#如圖,要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 )