vue-resource如何使用data属性来传递参数。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-resource如何使用data属性来传递参数。相关的知识,希望对你有一定的参考价值。

参考技术A // GET /someUrl?foo=bar
this.$http.get('/someUrl', params: foo: 'bar', headers: 'X-Custom': '...').then(response =>
// success callback
, response =>
// error callback
);

这是vue-resource的官方示例,但是vue-resource貌似已经不经常维护了,并且vue作者yyx推荐使用axios,所以我建议题主也尝试使用axios
参考技术B 这是vue-resource的官方示例,但是vue-resource貌似已经不经常维护了,并且vue作者yyx推荐使用axios,所以我建议题主也尝试使用axios

以上是关于vue-resource如何使用data属性来传递参数。的主要内容,如果未能解决你的问题,请参考以下文章

如何将 vue-resource 与 vue-router 实例一起使用?

vue-resource和vue-async-data两个插件的使用

vue-resource 路由带参数传参

如何使用 vue-resource 添加额外的标头来发布请求?

vue-resource,自定义指令,注册组件,ref属性访问

Vue-resource中post请求将data数据以request payload转换为form data的形式