如图,要post提交的数据中有三个都叫tags[]
的字段,内容还不一样,请问我该怎么做才能把这三个数据都post上去呢?
巴扎黑2017-06-12 09:21:36
若你能使用python requests模块的话,可以参考这里的答案 How to submit multiple files with the same POST name with requests?
parameters = [('tags', 'test'), ('tags', 'submit'), ('tags', 'tool')]
然后用你习惯的方式,如
r = requests.get("http://httpbin.org/get", params=parameters )