我正在用 AngularJS 玩 JavaScript 的 String Template LiteralsAngularJs 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 。有谁知道为什么不支持它们。或者我错过了什么。无论如何我可以让模板文字在 Angular 表达式中工作。

最佳答案

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

JavaScript 字符串模板文字在 Angular 表达式中不起作用-LMLPHP

关于JavaScript 字符串模板文字在 Angular 表达式中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40780303/

10-12 05:27