This repository was archived by the owner on Sep 29, 2022. It is now read-only.
修复了HttpRequest.cs中HttpRequest(Stream stream) GET请求的参数获取错误#19
Open
zk47 wants to merge 1 commit intoqinyuanpei:masterfrom
Open
修复了HttpRequest.cs中HttpRequest(Stream stream) GET请求的参数获取错误#19zk47 wants to merge 1 commit intoqinyuanpei:masterfrom
zk47 wants to merge 1 commit intoqinyuanpei:masterfrom
Conversation
Owner
|
Get请求的参数本来就是附加在URL上的啊? |
Author
这里是不是要读取url上的参数的? |
Owner
|
难道我不是从URL上取得的吗?为什么要从first[1]上来取值呢? |
Author
|
举个例子,有个请求是http://localhost:80/?name=Yanghui&height=45 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
HttpRequest.cs文件的第68、69行,处理GET的地址中的参数时,不应该用URL变量,应该用first[1]。否则无法解析出参数。