直接抓包提交的数据时 Ptfmx6PQ==
用 python requests.post 提交数据后 就自动 url 编码为 Ptfmx6PQ%3D%3D
1 julyclyde 2018-08-03 14:23:07 +08:00 无所谓啊,等收到之后就解码了 |
![]() | 2 KeatingSmith 2018-08-03 14:29:59 +08:00 from urllib.parse import unquote url = unquote(url) |
![]() | 3 KeatingSmith 2018-08-03 14:30:29 +08:00 在服务器端解码 |
4 TommyLemon 2018-08-03 14:35:07 +08:00 Form 会编码,需要后端解码,改用 JSON 提交就好了 |