Vue之resource请求数据
程序员文章站
2022-05-18 23:18:58
导入resource文件 代码块: 1、get请求 2、post请求:post 发送数据到后端,需要第三个参数 {emulateJSON:true}。emulateJSON 的作用: 如果Web服务器无法处理编码为 application/json 的请求,你可以启用 emulateJSON 选项。 ......
导入resource文件
<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
代码块:
1、get请求
1 var params = { 2 locale: "zh" 3 }; 4 that.$http.get('url',{params:params}).then(function (res) { 5 console.log(res); 6 },function (err) { 7 console.log(22222222222); 8 })
2、post请求:post 发送数据到后端,需要第三个参数 {emulatejson:true}。emulatejson 的作用: 如果web服务器无法处理编码为 application/json 的请求,你可以启用 emulatejson 选项。
1 var params = { 2 locale: "zh" 3 }; 4 that.$http.post('url',params,{emulatejson:true}).then(function (res) { 5 console.log(res); 6 },function (err) { 7 console.log(22222222222); 8 })
api:
上一篇: 算法训练 最大的算式
下一篇: 第一次上机