0
財產「helloMessage」我得到以下錯誤錯誤無法設置的不確定
的不確定
當我運行下面的代碼無法設置屬性「helloMessage」:
HTML:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
<head>
<title>Hello World</title>
</head>
<body>
<script src="js/angular.min.js"></script>
<script src="js/helloWorld.js"></script>
<h1 ng-controller="HelloWorldCtrl">{{helloMessage}}</h1>
</body>
</html>
Javascript(helloWorld.js):
(function (angular) {
function HelloWorldCtrl ($scope) {
$scope.helloMessage = "Hello World";
}
angular.module("app", []).controller("HelloWorldCtrl", ["$scope", HelloWorldCtrl()]);
})(angular);
任何想法?我正在使用角度版本1.2.28
感謝。那樣做了 – 2015-01-20 21:21:16