标签:ESS 从服务器 回调函数 post请求 uri inner 使用 spi read
$.get(url [,data] [,function(msg){}回调函数] [, dataType]);
$.post(url [,data] [,fn回调函数] [, dataType]);
该方法与$.get()方法使用完全一致,不同的是其为post方式请求
给服务器传递数据的时候,不需要设置header头
(以上两种ajax请求是异步的,如果需要设置同步请求,就换其他方法)
异步也就是不用等待
$.ajax({ //json对象
url:请求地址,
[data]:给服务器传递的数据(请求字符串/json对象)
[dataType]:默认字符串返回信息,数据从服务器返回格式html、text、xml、json
[type]:[get]/post请求方式
[success]:function(msg){} ajax成功请求后的回调函数,可以做后续处理使用
msg泛指服务器返回来的信息
相当于readyState==4的处理逻辑函数部分
async:[true]异步/false同步,
cache:[true]缓存/false不缓存,
})
以前遇到过使用ajax两层嵌套,这里放下代码,关键在于使用同步功能async:false, 默认是异步的
$.ajax({
async:false,
url:"geturl",
data:{'test':test,'test1':test1}
dataType:"json",
type:"get",
success:function(msg){
$.ajax({
url:"/spiderqueue/"+msg.url+"/"+msg.innerUrl,
dataType:"json",
type:"get",
success:function(msg){
$.each(msg,function(i,k){//追加所有的子<option>
$("#parent_item").append("<option value="+i+">"+k+"</option>");
});
}
})
}
})
标签:ESS 从服务器 回调函数 post请求 uri inner 使用 spi read
原文地址:https://www.cnblogs.com/redirect/p/10208288.html