我有这个:
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