AJAX请求头参数
$.ajax(
{
url:url,
type: 'post',
dateType: 'json',
// beforeSend: function (xhr) {
// xhr.setRequestHeader("organId:'1333333333'");
// },
headers: { 'appid': '1333333333','nonce':'sdaf' ,'timestamp':'new Date(100000) '},
// data: JSON.stringify(org),
success: function (data) { console.log("sucess",data); },
error: function (data) { console.log("error",data); }
}
);
Ajax的beforeSend
$.ajax({
// <!-- 执行前 -->
beforeSend: function(){
// Handle the beforeSend event
},
// <!-- 执行后 -->
complete: function(){
// Handle the complete event
}
// ......
});
防止重复数据
- 在实际项目开发中,提交表单时常常由于网络或者其原因,用户点击提交按钮误认为自己没有操作成功,进而会重复提交按钮操作次数,
- 如果页面前端代码没有做一些相应的处理,通常会导致多条同样的数据插入数据库,导致脏数据的增加。
- 要避免这种现象,在$.ajax请求中的beforeSend方法中把提交按钮禁用掉,等到Ajax请求执行完毕,在恢复按钮的可用状态。
// 提交表单数据到后台处理
$.ajax({
type: "post",
data: studentInfo,
contentType: "application/json",
url: "/Home/Submit",
beforeSend: function () {
// 禁用按钮防止重复提交
$("#submit").attr({ disabled: "disabled" });
},
success: function (data) {
if (data == "Success") {
//清空输入框
clearBox();
}
},
complete: function () {
// 放开
$("#submit").removeAttr("disabled");
},
error: function (data) {
console.info("error: " + data.responseText);
}
});
// ajax请求服务器加载数据列表时提示loading(“加载中,请稍后...”),
$.ajax({
type: "post",
contentType: "application/json",
url: "/Home/GetList",
beforeSend: function () {
$("loading").show();
},
success: function (data) {
if (data == "Success") {
// ...
}
},
complete: function () {
$("loading").hide();
},
error: function (data) {
console.info("error: " + data.responseText);
}
});
### 表单按钮
- form表单中存在button按钮,此时该如何写这个button呢?
- 错误写法,点击时相当于直接提交表单;
<button onclick="xx()">增加路程</button>
- 正确写法一
<button type="button" onclick="xx()">增加路程</button>
- 正确写法二
<input type="button" value="增加路程" onclick="xx()"/>