這篇文章主要介紹了怎么解決vue.js this.$router.push無效的問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
如下所示:
login() { if(this.email.length > 0 && this.password.length >0) { this.$http.post('/api/login', { user: this.email, password: this.password }) .then(res => { let userPwd = res.data if(this.password == userPwd) { this.$router.push("/") } else { alert("錯誤,請重新輸入!") } }) .catch(err => { console.log(err) }) } else { alert("輸入錯誤!") } }
this.$router.push(“/”)不是跳轉到主頁,而是變成這樣:http://127.0.0.1:8080/login?email=yejia%40qq.com&password=123456,請問哪里錯啦?
解決方案1:
有沒有可能是已經跳轉了,但是主頁判斷成了沒有登錄,然后又跳回來了。
解決方案2:
你這里的 this指向已經不是 vue 的對象啦,可以這么改
login() { const self = this; if(this.email.length > 0 && this.password.length >0) { this.$http.post('/api/login', { user: this.email, password: this.password }) .then(res => { let userPwd = res.data if(this.password == userPwd) { self.$router.push("/") } else { alert("錯誤,請重新輸入!") } }) .catch(err => { console.log(err) }) } else { alert("輸入錯誤!") } }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“怎么解決vue.js this.$router.push無效的問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。