组件绑定未传递字符串值

时间:2018-10-12 11:04:47

标签: angularjs

我有这个:

faqId: {{faq.id}}
<card-knowledgebase-follow-up-question ng-if="vm.hasFollowUpQuestion(faq)"
                                       faq-id="{{faq.id}}">
</card-knowledgebase-follow-up-question>

渲染页面时,我可以看到正确的faq.id

然后在我的card-knowledgebase-follow-up-question组件中,我拥有:

bindings: {
    faqId: '@',
},

在构造函数中,我有:

constructor() {
    console.log(this.faqId);
}

当我运行应用程序this.faqId时未定义。我正在使用角度版本1.7.2

0 个答案:

没有答案