【发布时间】:2017-05-19 18:48:41
【问题描述】:
我在我的组件中声明一个变量。
例如
let link = 'https://google.com'
但是如果我在我的模板中使用它,它就不存在了
例如
{{ link }} -> has no output
href="#{{link}}" -> resolved into href="#"
[attr.href]="link" -> resolves into nothing
[attr.href]="link+'#'" -> resolves into href="undefined/#"
我做错了什么?
感谢您的帮助
【问题讨论】: