POST请求

Posted 不可叽叽歪歪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POST请求相关的知识,希望对你有一定的参考价值。

from scrapy.http import FormRequest

#replace the start_urls statement with a start_requests() method
def start_requests(self):
return [ FormRequest(
"http://web:9312/dynamic/login", formdata={"user": "user", "pass": "pass"}

确认启用了Cookie

# Start on the welcome page def start_requests(self):
return [
Request(
"http://web:9312/dynamic/nonce", callback=self.parse_welcome)
]

# Post welcome page‘s first form with the given user/pass def parse_welcome(self, response):
return FormRequest.from_response( response,
formdata={"user": "user", "pass": "pass"}

 

以上是关于POST请求的主要内容,如果未能解决你的问题,请参考以下文章

求教golang中http发送post请求gb2312编码的解决方案

QT QHttpMultiPart上传图片

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装

Python 向 Postman 请求代码片段