#如圖,要post提交的資料中有三個都叫tags[]的字段,內容還不一樣,請問我該怎麼做才能把這三個資料都post上去呢?
tags[]
业精于勤,荒于嬉;行成于思,毁于随。
第一行 view source
view source
你可以在Client端三個字段合併成JSON字串成一個字段,然後在Server端獲取時再解下就OK了
若你能使用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 )
第一行
view source
你可以在Client端三個字段合併成JSON字串成一個字段,然後在Server端獲取時再解下就OK了
若你能使用python requests模組的話,可以參考這裡的答案 How to submit multiple files with the same POST name with requests?
然後用你習慣的方式,如