JavaScript字符串模板文字在Angular Expressions

时间:2016-11-24 07:27:42

标签: javascript angularjs string

我正在使用AngularJS的String Template Literals JavaScript。似乎AngularJs Expressions不支持字符串模板文字。这是我正在玩的代码

<body ng-app>
    <h1>Hello Plunker!</h1>
    <input type="text" ng-model="temp">
    <p>{{ 'Text in the text box: ' + temp }}</p>
    <!--This does not work.-->
    <!--<p>{{ `Text in the text box: ${temp}` }}</p>-->
  </body>

这是plunker。有谁知道他们为什么不受支持。或者我错过了什么。无论如何,我可以使用角度表达式来处理模板文字。

1 个答案:

答案 0 :(得分:-1)

字符串模板文字浏览器兼容性:

enter image description here