// 基本用法无参数get请求 $.ajax({ url: url, success:function(result){ console.log(result); } } // 需指定方法则增加method字段 $.ajax({ url:url, method:"POST", success:function(result){ console.log(result); } } // 有参数,则增加data字段,有请求头则增加headers字段,有错误处理增加error字段 // 默认是按照表单提交post方法,data中虽然是json但是提交时转成表单 $.ajax({ url:url, data:{a:10}, success:function(result){ console.log(result); }, error:function(xhr,status,error){ console.log(error); } }); // data在post下是表单格式,在get下是querystring格式 // 通过以下方法指定为json格式[json格式本质就是body里是json字符串,头里是application/json] $.ajax({ url:url, headers:{ contentType: "application/json"}, method:"POST", data:JSON.stringify({a:10}), success:function(result){ console.log(result); } });
// fetch的post表单数据用法 fetch(url,{ headers:{ 'content-type': "application/x-www-form-urlencoded" }, method:"POST", body:"a=12&b=33", }) .then(res=>res.json()) .then(data=>console.log(res)) .catch(e=>{}) // fetch的post json数据用法 fetch(url,{ headers:{ 'content-type': "application/json" }, method:"POST", body:JSON.stringify({a:100}), }) .then(res=>res.json()) .then(data=>console.log(res)) .catch(e=>{})
// axios默认是json类型的提交 axios({ url: url, method:"POST", data:{a:12} }) .then(res=>console.log(res.data)) // 如果想改成form则需要修改headers和data格式 axios({ url:url, method:"POST", headers:{"Content-Type":"application/x-www-form-urlencoded"}, data:"a=12&b=23" }) .then(res=>console.log(res.data))
jQuery的get和post可以简写:
$.get(url,data,callback) // querystring格式 $.post(url,data,callback) // x-www-form-urlencoded格式
axios的get/post/put/delete等等都可以简写
axios.post(url,data).then(callback)
Jquery Ajax:
Fetch:
promise
设计的。Fetch的代码结构比起ajax简单多了,参数有点像jQuery ajax。axios:
promise
对象的。总之:推荐使用
axios
,主流而且功能强大。
**ps:**文章中内容仅用于技术交流,请勿用于违规违法行为。