0
從表達式調用函數還是不好編碼?從angularjs中的表達式調用函數
<div ng-controller="myCtrl">
{{callFunction()}}
</div>
angular.controller('myCtrl', ['$scope', function($scope) {
$scope.callFunction = function() {
console.log('hello');
}
});
你想達到什麼目的?你想要函數被調用一次Angular插入你的表達式? – AranS