Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
>>> payload = {'a': 'b'} >>> url = 'http://someurl/' >>> req_ = [grequests.post(url, session=requests.session, data=payload)] >>> r = grequests.map(req_) >>> r [None]
难道我做错了什么?
您需要传递会话实例而不是会话类:
>>> session = requests.session() >>> req_ = [grequests.post(url, session=session, data=payload)]