首页 > 代码库 > vue resource 携带cookie请求 vue cookie 跨域(六)
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 跨域(六)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。