需求:通過url傳參頁面跳轉當時能正常渲染;但是重新整理後資料就消失了;
解決方案:
params傳參:
this.$router.push(})
取值:
this.$route.params.user
發現可以渲染;但是一重新整理就變成了[object object]
需要在router.中修改
routes: [
]
query傳參問題
this.$router.push( })
取:
this.$router.query.newsurl
如果還是報object:
就用json.stringify來轉成字串
發訊息
取:
//js:
json.parse(this.$route.query.user)
//vue方法
beforerouteenter(to, from, next) );
}
vue跳轉傳參重新整理後引數消失
一開始需要實現的功能是跳轉到乙個頁面然後傳入乙個產品id號,然後在目標頁面用這個id號顯示具體的產品資訊 我是用的方法是在template中使用router link標籤 將 productid 傳入 product 頁面routerto routerto index 在product頁面中可以直接...
vue跳轉傳參重新整理後引數消失
一開始需要實現的功能是跳轉到乙個頁面然後傳入乙個產品id號,然後在目標頁面用這個id號顯示具體的產品資訊 我是用的方法是在template中使用router link標籤 將 productid 傳入 product 頁面routerto routerto index 在product頁面中可以直接...
vue跳轉傳參重新整理後引數消失
一開始需要實現的功能是跳轉到乙個頁面然後傳入乙個產品id號,然後在目標頁面用這個id號顯示具體的產品資訊 我是用的方法是在template中使用router link標籤 將 productid 傳入 product 頁面routerto routerto index 在product頁面中可以直接...