vue resource 携带cookie请求 vue cookie 跨域
Posted SeaJson
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 跨域的主要内容,如果未能解决你的问题,请参考以下文章