ajax指定post傳遞資料

2022-08-16 10:18:12 字數 402 閱讀 4640

1

$.ajax(/fchydrant/presubmit',

5 data: ,

6 success: function

(rtn));14}

15 });

當前臺使用$.ajax傳遞資料時,如果不指定type型別,會預設使用get方式提交,這時會將data裡的資料轉成字串格式拼接在request url後面,如果data裡的資料長度過長,頁面會報錯。

如果加上type: "post",這時data裡的資料不會拼接在url後面,會儲存在form data(f12除錯工具裡可以檢視)裡,這種提交方式與form表單提交資料時相同,這時後台需要接受data裡的資料方式為request.getparameter("ids");

ajax使用POST傳遞引數

下邊是我找到的乙個例子http jeremy lee.blog.sohu.com 63843765.html post.html function alertcontents else function get obj server response post.php print r 下邊是我找到的...

使用Ajax傳遞post請求引數

post請求必須在請求報文中明確設定請求的型別 xhr.setrequestheader content type post請求要寫在send方法裡 post請求要把請求引數寫在send方法中 xhr.send parase doctype html en utf 8 viewport conten...

Ajax傳遞json資料

ajax的傳遞json資料的實現 1.ajax基本案例詳解之 ajax的實現 2.ajax基本案例詳解之 get的實現 現在來看一下具體的內容,在index.jsp的裡面寫 ajax success function data complete function error function 然後再...