實(shí)現(xiàn)跨域請求時(shí)癣亚,每次ajax請求都是新的session丑掺,導(dǎo)致無法獲取登錄信息,所有的請求都被判定為未登陸述雾。
1街州、 vuejs ajax跨域請求
最開始使用的是vue-resource,結(jié)果發(fā)現(xiàn)vue2推薦的是axios玻孟,于是改成axios唆缴;
安裝axios
npm install axios -S
安裝完成后在main.js中增加一下配置:
import axios from 'axios';
axios.defaults.withCredentials=true;
main.js全部配置如下:
import Vue from 'vue'
import App from './App.vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-default/index.css'
import router from './router';
import axios from 'axios';
import './assets/css/main.css'
import './assets/css/color-dark.css'
//開啟debug模式
Vue.config.debug = true;
axios.defaults.withCredentials=true;
Vue.prototype.$axios = axios;
Vue.use(ElementUI);
new Vue(
{
router,
el: '#app',
render: h => h(App)
}
).$mount('#app')
在XXX.vue文件中具體使用如下:
<template>
<el-col :span="4" style="background-color: #eef1f6;height:100%;">
<el-menu default-active="1" class="el-menu-vertical-demo" :unique-opened="uniqueOpened" router
v-for="menu in menulist" :key="menu.fidStr">
<template v-if="menu.isleaf === 1">
<el-menu-item :index="menu.furl">{{menu.fname}}</el-menu-item>
</template>
<template v-else>
<el-submenu :index="menu.fidStr">
<template slot="title"><i class="el-icon-menu"></i>{{menu.fname}}</template>
<template v-for="firstLevelChild in menu.children" >
<template v-if="firstLevelChild.isleaf === 1" >
<el-menu-item :index="firstLevelChild.furl">{{firstLevelChild.fname}}</el-menu-item>
</template>
<template v-else>
<el-submenu :index="firstLevelChild.fidStr">
<template slot="title"><i class="el-icon-menu"></i>{{firstLevelChild.fname}}</template>
<el-menu-item v-for="secondLevelChild in firstLevelChild.children" :index="secondLevelChild.furl">
{{secondLevelChild.fname}}
</el-menu-item>
</el-submenu>
</template>
</template>
</el-submenu>
</template>
</el-menu>
</el-col>
</template>
<script type="text/javascript">
export default {
data() {
return {
uniqueOpened:true,
menulist:[]
}
} ,
mounted: function() {
let self = this;
this.$axios.post('http://localhost:8080/test/xxx/xxxx', {}, {
headers: {
"Content-Type":"application/json;charset=utf-8"
},
withCredentials : true
}).then(function(response) {
// 這里是處理正確的回調(diào)
let result = response.data.result;
if (0 == result) {
self.menulist = response.data.item.menulist;
} else if (11 == result || 9 == result) {
self.$router.push('/login');
} else {
console.log(response.data);
}
}).catch( function(response) {
// 這里是處理錯(cuò)誤的回調(diào)
console.log(response)
});
}
}
</script>
<style scoped>
.sidebar{
display: block;
position: absolute;
width: 200px;
left: 0;
top: 70px;
bottom:0;
background: #2E363F;
}
.sidebar > ul {
height:100%;
}
</style>
在后臺(tái)項(xiàng)目中的登陸攔截器中設(shè)置了,接受跨域訪問的header黍翎,如下:
public class LoginInterceptor extends HandlerInterceptorAdapter {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
response.setHeader("Access-Control-Allow-Headers", "X-Requested-With, accept, content-type, xxxx");
response.setHeader("Access-Control-Allow-Methods", "GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, PATCH");
response.setHeader("Access-Control-Allow-Origin", "*");
return true;
}
}
現(xiàn)在可以就可以跨域訪問了面徽。
2、登陸session獲取
因?yàn)槭呛笈_(tái)管理系統(tǒng)匣掸,肯定都需要需要登陸趟紊,才能用的, 因此我在登陸時(shí)保存了session
//登陸成功
session.setAttribute("user", obj);
我希望其它請求進(jìn)來時(shí)碰酝,在攔截器中判斷是否登陸了霎匈,是否有權(quán)限訪問這個(gè)請求路徑
//攔截器中增加,獲取session代碼
HttpSession session =request.getSession();
System.out.println("攔截器中的session的id是====" + session.getId());
Object obj = session.getAttribute("user");
結(jié)果發(fā)現(xiàn)送爸,每次ajax跨域訪問都是新的session 铛嘱,每次的sessionID都不一樣
在segmentfault上提了一個(gè)問題暖释,有人提示需要讓ajax請求攜帶cookie,也就是認(rèn)證信息弄痹,于是在攔截器中饭入,增加了一個(gè)需要認(rèn)證信息的header:
response.setHeader("Access-Control-Allow-Credentials", "true");
然后再次在瀏覽器中測試嵌器,發(fā)現(xiàn)瀏覽器提示肛真,當(dāng)Access-Control-Allow-Credentials設(shè)為true的時(shí)候,Access-Control-Allow-Origin不能設(shè)為星號(hào)爽航,既然不讓我設(shè)為星號(hào)蚓让,我就改成前端項(xiàng)目的配置
response.setHeader("Access-Control-Allow-Origin", "http://127.0.0.1:8010");
發(fā)現(xiàn)每次ajax請求,還是不同的session讥珍,打開chrome的network历极,發(fā)現(xiàn)每次請求的請求頭中并沒有,和我想象的一樣攜帶cookie信息衷佃,也就是下面這個(gè)header:
Cookie:JSESSIONID=node015f4w1j2kgjk61i7jyyim8lo3u0.node0;
因?yàn)槲矣玫腶xios趟卸,所以找到axios的文檔鏈接描述
發(fā)現(xiàn)一下內(nèi)容:
// `timeout` specifies the number of milliseconds before the request times out.
// If the request takes longer than `timeout`, the request will be aborted.
timeout: 1000,
// `withCredentials` indicates whether or not cross-site Access-Control requests
// should be made using credentials
withCredentials: false, // default
// `adapter` allows custom handling of requests which makes testing easier.
// Return a promise and supply a valid response (see lib/adapters/README.md).
adapter: function (config) {
/* ... */
},
withCredentials默認(rèn)是false,意思就是不攜帶cookie信息氏义,那就讓它為true锄列,我是全局性配置的,就是main.js中的這句話:
axios.defaults.withCredentials=true;
然后再測試惯悠,發(fā)現(xiàn)每次ajax請求都是同樣的session了(不包含瀏覽器的options請求)邻邮。
3、代理配置
因?yàn)椴幌朊總€(gè)頁面里的請求都寫http://127.0.0.1:8080克婶,并且我用的是element ui的webpack項(xiàng)目模板筒严,
所以就想使用代理(不知道叫這個(gè)合適不合適):
devServer: {
host: '127.0.0.1',
port: 8010,
proxy: {
'/api/': {
target: 'http://127.0.0.1:8080',
changeOrigin: true,
pathRewrite:{
'/api':'/xxxxxx'
}
}
}
把a(bǔ)jax請求改成下面這個(gè)樣子:
this.$axios.post('/api/xx/xxx', {}, {
headers: {
"Content-Type": "application/json;charset=utf-8"
}
}).then(function(response) {
// 這里是處理正確的回調(diào)
}).catch(function(response) {
// 這里是處理錯(cuò)誤的回調(diào)
console.log(response)
});
網(wǎng)上說都是配置為proxyTable, 用的是http-proxy-middleware這個(gè)插件,我裝上插件情萤,改成這個(gè)鸭蛙,webpack總是報(bào)錯(cuò),說proxyTable是非法的配置筋岛,無法識(shí)別娶视。
無奈改成了模板自帶的proxy,可以使用泉蝌,為什么可以用歇万,我還不清楚,proxyTabel為什么不能用勋陪,也沒搞明白贪磺。有知道的,可以指點(diǎn)一下诅愚。
雖然代理配置好了寒锚,也能正常請求劫映,結(jié)果發(fā)現(xiàn)請求的session又不一樣了,感覺心好累吧睬啊S靖场!喇喉!
沒辦法祖今,只能再看請求頭是不是有問題,發(fā)現(xiàn)返回header中有session限制的拣技,如下:
set-cookie:JSESSIONID=node0v5dmueoc119rb42b59k5qf3w0.node0;Path=/xxxx
要求cookie只能再/xxxx下也就是項(xiàng)目的根路徑下使用千诬,于是我把代理改成:
devServer: {
host: '127.0.0.1',
port: 8010,
proxy: {
'/xxxx/': {
target: 'http://127.0.0.1:8080',
changeOrigin: true
}
}