我觉得我错过了什么.当我尝试data
attribute
在我的中使用时template
,像这样:
- {{ section.text }}
Angular 2
崩溃:
EXCEPTION:模板解析错误:无法绑定到"sectionvalue",因为它不是已知的本机属性("
] data-sectionvalue ="{{section.value}}"> {{section.text}}
我显然遗漏了一些语法,请帮忙.
请改用属性绑定语法
- {{ section.text }}
要么
- {{ section.text }}
另请参见如何在Angular 2中添加条件属性?
关于访问
- {{ section.text }}
和
get_data(event) { console.log(event.target.dataset.sectionvalue) }