码迷,mamicode.com
首页 > 其他好文 > 详细

vue resource 携带cookie请求 vue cookie 跨域

时间:2018-02-23 13:37:03      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:方法   拦截器   fun   xxx   ams   post   vue   --   参数   

vue resource 携带cookie请求 vue cookie 跨域

1、依赖VueResource 确保已安装vue-resource到项目中,找到当前项目,命令行输入:
npm install vue-resource --save
在主方法添加 过滤

Vue.http.interceptors.push(function(request, next) {//拦截器
// 跨域携带cookie
 request.credentials = true;
next()
})

以下是针对每个请求都会携带cookie ,也可以指定接口请求携带cookie
this.$http.get(‘xxxx‘,{params: 参数对象,credentials: true})

vue resource 携带cookie请求 vue cookie 跨域

标签:方法   拦截器   fun   xxx   ams   post   vue   --   参数   

原文地址:https://www.cnblogs.com/lusongshu/p/8461372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!