欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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:

  Vue之resource请求数据

    Vue之resource请求数据

  Vue之resource请求数据