vue-resource发起get,post,jsonp请求
2021-03-06 09:26
YPE html>
标签:The 没有 管理 第一个 utf-8 resource idt status roo
vue-resource发起get,post,jsonp请求
以下是一个简单的 Get 请求实例,请求地址是一个js文件:
Document
post 请求和jsonp请求
post 发送数据到后端,需要第三个参数 {emulateJSON:true}。
emulateJSON 的作用: 如果Web服务器无法处理编码为 application/json 的请求,你可以启用 emulateJSON 选项。
Document
设置根域名
通过设置根域名可以更有效的管理请求地址
定义:
Vue.http.options.root = ‘根地址‘
使用
要想使根路径生效,需要使用相对路径,即url最前面没有/
下面是一个案例
//定义根域名
Vue.http.options.root = ‘../js‘;
//.....
//发送请求
this.$http.get(‘vue.js‘).then()
//上面的地址会自动被拼接成
//../js/vue.js
全局配置 emulateJSON
-
Vue.http.options.emulateJSON=true;
-
这样就可以在发送post请求时不设置emulateJSON参数了。
vue-resource发起get,post,jsonp请求
标签:The 没有 管理 第一个 utf-8 resource idt status roo
原文地址:https://www.cnblogs.com/junlinsky/p/12897837.html
文章标题:vue-resource发起get,post,jsonp请求
文章链接:http://soscw.com/index.php/essay/60789.html