我有一個網站建立與VueJS在前面和Java背面。該網站需要登錄才能看到內容。微軟EDGE XMLHttpRequest:網絡錯誤0x80070005,訪問被拒絕與VueJS
在Firefox,IE和Chrome登錄完美的作品,但微軟EDGE當我打電話的登錄方法,我得到這個錯誤:
SCRIPT7002: XMLHttpRequest: Network Error 0x80070005, Access is denied.
這是登錄方法。
login() {
axios.post('/login', this.user,
{'headers':{'X-AUTH-TOKEN': localStorage.token}},
{'headers':{'Content-Type': 'application/json'}})
.then((response) => {
AuthPlugin.getToken(response.data);
alertify.set('notifier','delay', 3);
alertify.success("Success! You are now logged in.");
axios.get("/user", this.user)
.then((response) => {
this.$router.push('/home');
AuthPlugin.setUser(this.user.username);
})
})
.catch(function (error) {
alertify.error('Invalid User');
});
}
我在互聯網上搜索的解決方案,但我試過沒有工作。
是否有人知道如何解決這個錯誤?
謝謝,謝謝,現在正在工作:)。 –