2012-03-27 51 views

回答

0

是,jQuery has a .post() function用於向服務器資源提交POST請求。請注意,這只是爲the .ajax() function的包裝:

This is a shorthand Ajax function, which is equivalent to: 

$.ajax({ 
    type: 'POST', 
    url: url, 
    data: data, 
    success: success, 
    dataType: dataType 
}); 
+0

謝謝大衛..我想這會工作,類型:「POST」應該工作 – daisy 2012-03-28 06:00:29

+0

大衛,你能告訴我,我怎麼能傳遞一個模型的對象作爲jQuery中的'數據'? – daisy 2012-03-28 06:26:17

+0

@ user1158326:'.ajax()'調用中的'data'元素只是一個鍵/值對,通常以JSON表示法給出。例如,一些值可以像這樣傳遞:'$ .post(「test.php」,{name:「John」,time:「2pm」});'或者可以包含一個數組:$。 post(「test.php」,{'choices []':[「Jon」,「Susan」]});'所以在JavaScript代碼中,您只需構建一個JSON對象以傳遞給請求。 – David 2012-03-28 12:19:52

相關問題