vue-resource的使用
Posted 风流倜傥任潇洒, 不负青春好年华。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-resource的使用相关的知识,希望对你有一定的参考价值。
之前使用axios post请求不能向后台发送数据,然后使用了vue-resource这个插件
import Vue from ‘vue‘
import VueResource from ‘vue-resource‘
Vue.use(VueResource)
组件
this.$http.post(
url,
data,
{ emulateJSON: true }, //加上这句不跨域了,也能向后台发送数据了
{‘Content-Type‘: ‘application/x-www-form-urlencoded; charset=UTF-8‘} //必填的
)
以上是关于vue-resource的使用的主要内容,如果未能解决你的问题,请参考以下文章