我需要將一些數據發佈到URL。我需要得到我的對象:將JSON對象作爲表單數組發送
var profile = {
firstname: first_name,
lastname: last_name,
email: email,
phone: phone,
mobile: mobile,
address_1: address_1,
address_2: address_2,
city: city,
postcode: postcode,
};
發送到端點就像一個窗體。比如一個數組
profile[firstname] = "Billy"
profile[lastname] = "Jones"
...
我的頭Content-Type
:
Content-Type application/x-www-form-urlencoded; charset=utf-8
出於某種原因,我無法弄清楚如何將其發送的形式排列,而不是一個JSON字符串。
是你使用jquery發送的嗎? – vlio20
@VladIoffe nope使用網絡客戶端開發鈦應用程序 - http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.Network.HTTPClient – iamjonesy
爲什麼不使用json字符串?根據所使用的序列化程序,將其去序列化爲服務器端的字典<字符串,對象>或鍵值對列表非常簡單。 –