requests 不能發送 bytearray 數據

requests 不能發送 bytearray 數據 import requests body = b"abc" body = bytearray(body) r = requests.post('https://example.com', data=body) # r = requests.post('https://example.com', data=memoryview(body)) pr
相關文章
相關標籤/搜索