1
我有一個打印消息的元素。該消息包含動態值。 那麼,如何在評估標籤內部評估之前評估消息內部的內容?如何評估另一個表達式中的angularjs表達式
$scope.name = 'John' $scope.message = 'Hello {{name}}'
<li>{{message}}<li>
我有一個打印消息的元素。該消息包含動態值。 那麼,如何在評估標籤內部評估之前評估消息內部的內容?如何評估另一個表達式中的angularjs表達式
$scope.name = 'John' $scope.message = 'Hello {{name}}'
<li>{{message}}<li>
可以使用$interpolate
服務,以評估該表達式。
.controller('DemoController', function($scope, $interpolate) {
$scope.name = 'John';
$scope.message = $interpolate('Hello {{name}}')($scope);
});
ryeballar是正確的。或者你可以這樣做:
$scope.name = 'John'
$scope.message = 'Hello'+ $scope.name;
<li>{{message}}<li>