Ajax中layer.load()的使用

ajax调用接口时,如果请求时间过长,则一般需要调用load()方法显示正在加载效果

var loadIndex = "";
$.ajax({
	type: "POST",
	url:url,
	async: true,
	data: {"id": id},
	beforeSend: function () {//发送请求前调用load方法
		loadIndex = layer.load(2);
	},
	complete: function(){//load默认不会关闭,请求完成需要在complete回调中关闭
		layer.close(loadIndex);
	},
	success: function (data) {
		layer.alert("成功!");
	},
	error: function () {
		layer.alert("失败!");
	}
 });

效果如下:

Ajax中layer.load()的使用_第1张图片

注意:

load()方法在ajax同步请求中不生效,只在异步请求中生效,所以想要在ajax中使用load()方法,需要将请求设置为异步
ajax默认为异步请求,async属性默认为true
async: true,   异步
async: false,  同步

你可能感兴趣的:(Java)