使用程序化导航Vue.js传递道具

时间:2017-07-17 19:04:58

标签: javascript vue.js vuejs2 vue-router

我有一个Vue组件,其中有一个名为' title' e.g:

<script>
export default {
  props: ['title'],
  data() {
    return {
    }
  }
}
</script>

在某个操作完成后,我以编程方式导航到组件。 有没有办法以编程方式路由用户,同时还设置道具值?我知道你可以创建这样的链接:

<router-link to="/foo" title="example title">link</router-link>

但是,有没有办法做以下事情?

this.$router.push({ path: '/foo', title: 'test title' })

编辑:

根据建议,我已将路线更改为以下内容:

   {
      path: '/i/:imageID',
      component: Image,
      props: true
    }

导航到以下内容:

this.$router.push({ path: '/i/15', params: {title: 'test title' }})

但是,我的图片组件(模板 - 见下文)仍然没有显示任何标题。

<h1>{{ title}}</h1>

有什么可能导致问题吗?

3 个答案:

答案 0 :(得分:39)

使用params。

this.$router.push({ name: 'foo', params: {title: 'test title' }})

注意:您必须指定name。如果您使用this.$router.push致电path,则无效。

并设置接受params作为道具的路线。

{path: "/foo", name:"foo", component: FooComponent,  props: true}

props: truehere

答案 1 :(得分:3)

vue-router docs明确指出params只能使用name而不是path。

// set  props: true in your route definition
const userId = 123
router.push({ name: 'user', params: { userId }}) // -> /user/123
// This will NOT work
router.push({ path: '/user', params: { userId }}) // -> /user

如果您使用路径,请在路径中传递参数或使用查询,如下所示:

router.push({ path: `/user/${userId}` }) // -> /user/123

// with query, resulting in /register?plan=private
router.push({ path: 'register', query: { plan: 'private' }})

答案 2 :(得分:0)

在路由器中定义的子路由遇到相同的问题。下面的router.js显示了映射到命名

的子路由
<router-view name="create"></router-view>
<router-view name="dashboard"></router-view>

router.js

    {
      path: "/job",
      name: "Job",
      component: () => import("./views/JobPage"),
      children: [
        {
          path: "create",
          name: "JobCreate",
          components: {
            create: JobCreate
          }
        },
        {
          path: ":id",
          name: JobConsole,
          components: {
            dashboard: JobConsole
          }
        }
      ]
    },

当我尝试从create传递道具时,vue-router无法捕获JobConsole所需的动态路线匹配:

      this.$router.push(
        {
          name: "Job",
          params: {
            id: this.ID_From_JobCreate
          }
      )