在我的 Angular 4 应用程序中,我有一个接受字符串输入的组件:
<app-my-component [myInput]="'some string value'"></app-my-component>
在某些情况下,我需要在字符串中传递一个变量,例如:
<app-my-component [myInput]="'My name is ' + name + '!'"></app-my-component>
如果我可以使用es6 模板文字(又名模板字符串或反引号字符串),那就太好了:
<app-my-component [myInput]="`My name is ${name}!`"></app-my-component>
但它不起作用:
未捕获的错误:模板解析错误:解析器错误:意外的标记词法分析器错误:表达式中第 1 列的意外字符 [`]
实现它的正确方法是什么?