We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP1.0定义了三种请求方法: GET, POST 和 HEAD方法。 HTTP1.1新增了五种请求方法:OPTIONS, PUT, DELETE, TRACE 和 CONNECT 方法。 而代码中仅仅提到了get head options trace,剩余的都没有涉及,是有什么特殊原因吗?
The text was updated successfully, but these errors were encountered:
其他方法都需要额外编写代码,为了追求简单,这个项目没有实现。 不过你可以自己去实现,尤其是POST方法。
Sorry, something went wrong.
No branches or pull requests
HTTP1.0定义了三种请求方法: GET, POST 和 HEAD方法。
HTTP1.1新增了五种请求方法:OPTIONS, PUT, DELETE, TRACE 和 CONNECT 方法。
而代码中仅仅提到了get head options trace,剩余的都没有涉及,是有什么特殊原因吗?
The text was updated successfully, but these errors were encountered: