我正在使用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。有谁知道他们为什么不受支持。或者我错过了什么。无论如何,我可以使用角度表达式来处理模板文字。