如何将route param作为可绑定值传递给组件的viewmodel(不是view)

时间:2017-11-21 01:46:20

标签: aurelia aurelia-binding aurelia-router bindable

我使用路线导航,我从激活中访问路线参数。

app.ts

export class App {
   configureRouter(config) {
    config.map([
        { route: 'student/:id', name: 'student', moduleId: 'student',  nav: true, title: 'student', href: '#' }
    ]);
}

}

student.ts

export class Student {
    id;

activate(params) {
    this.id = params.id;
   }
}

它路由到的页面是使用需要传递此参数的几个组件构建的。

<template>
    <require from="grade" > </require>
    <h1> Student - ${id} </h1>
    <grade id.bind="id"></grade>
    <department id.bind="id"></department>
<template>

在我的成绩视图中,当我在html元素中显示它时(在我在viewmodel中将其设置为可绑定)之后,它会正确获取id:

grade.html        <span>${id}</span>

但是,我无法在等级的视图模型中获得id,即 grade.ts

    export class Grade{
      @bindable id;
        constructor() {
          console.log("id=", this.id};
 }

出现未定义。我尝试通过激活访问它,就像我在学生中所做的那样,但看起来模板在页面加载时未激活。我认为问题不在于路由,而是如何在viewmodel中访问可绑定值。我尝试了一次性和双向绑定模式,他们给出了相同的结果。

1 个答案:

答案 0 :(得分:2)

它未定义的原因是因为您在constructor中调用了它。可绑定变量填入attached阶段。

如果您尝试使用这样的附加方法调用它:

attached() {
   console.log("id=" + this.id);
 }

应该填补。

有关Aurelia组件生命周期的更多信息,请单击here