提交 f84eaaa1 authored 作者: 钟是志's avatar 钟是志

本地环境接口 headers 增加 env 参数 解决一站式接口跨域的问题

上级 c6756bf3
...@@ -24,7 +24,11 @@ export function getVisitorToken(){ ...@@ -24,7 +24,11 @@ export function getVisitorToken(){
const secretString = token + userId + timestamp; const secretString = token + userId + timestamp;
const res = { const res = {
headers: {}, headers: {},
}; };
if(process.env.NODE_ENV === 'development'){
res.headers.env = 'test';
}
if(url && typeof url === 'string' && url.indexOf('oauthPub=true') > -1){ // 公共接口不需要token if(url && typeof url === 'string' && url.indexOf('oauthPub=true') > -1){ // 公共接口不需要token
return res; return res;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论