💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
详细介绍用jQuery发送ajax的几种情况,以及$.ajax(),$.get(),$.post()三者的关系. ajax是一个方法,方法的参数{}是一个对象,里面是对象的属性和值 ### $.ajax() ```javascript //ajax是一个方法,方法的参数{}是一个对象,里面是对象的属性和值 $.ajax({ type : "post", //发送类型,get或post,默认为get async : true, //true为异步,false为同步,默认为true url : "http://localhost:8080/comment.php", //请求的后台地址 data : "name=wang&comment=hello", //往后台传递的参数,可以是object或string类型,但最终都会被转换为字符串格式 data : {name:"wang",comment:"hello"}, data : {foo:["bar1","bar2"]},//被转换为 &foo=bar1&foo=bar2 data : $("#form1").serialize(), dataType : "text", //预期服务器返回的数据类型,可以为text,json,html,xml,script等,text表示返回数据为纯文本字符串 cache : true, //true使用浏览器缓存,false不适用,默认为true contentType : //string类型,默认为"application/x-www-form-urlencoded",适合大多数应用场合 success : statechange //成功时的回调函数 }); function statechange(data) { //用于接收应答数据的回调函数,参数在data中 } ``` <br/> ### $.get() ~~~ $.get(url,data,success(response,status,xhr),dataType) ~~~ url //必需。规定将请求发送的哪个 URL。 data //可选。规定连同请求发送到服务器的数据。 success(response,status,xhr) //可选。规定当请求成功时运行的函数。 额外的参数: response // 包含来自请求的结果数据 status // 包含请求的状态 //xhr - 包含 XMLHttpRequest 对象 dataType //可选。规定预计的服务器响应的数据类型。 默认地,jQuery 将智能判断。 等价于: ~~~ $.ajax({ url: url, data: data, success: success, dataType: dataType }); ~~~ <br/> ### $.post ~~~ $.post(url,data,success(data, textStatus, jqXHR),dataType) ~~~ 等价于: ~~~ $.ajax({ type: 'POST', url: url, data: data, success: success, dataType: dataType }); ~~~ eg: ~~~ $.post("Ajax.aspx", { Action: "post", Name: "lulu" }, function (data, textStatus){ // data 可以是 xmlDoc, jsonObj, html, text, 等等. //this; // 这个Ajax请求的选项配置信息,请参考jQuery.get()说到的this alert(data.result); }, "json"); ~~~