在Page1中,我将查询传递给Page2:
this.$router.push({name: 'physicalserver_task_one_key', query: {task_id: params.row.id}})
我在那里调试,params.row.id
是25。
localhost:8080/physicalserver_task_one_key_put_in_storage?task_id=25
但在第2页中,我无法通过以下方式获取task_id
:
this.$route.params.task_id
我还调试this.$route.params
,结果为{}
。
答案 0 :(得分:0)
使用this.$route.query.task_id to
接收查询参数。
见https://router.vuejs.org/api/#route-object-properties