4

这是我的 html 文件。angular.js 文件位于 java/main/webapp/js 文件夹下,当我单击它时 Intellij 可以看到它,但代码不起作用!我在屏幕 {{helloMessage}} 上打印,而不是“hello world”

我在这里想念什么?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Angular test </title>

</head>
 <body>

<h1 ng-controller="HelloWorldCtrl">{{helloMessage}}</h1>

Angular test 
<script src="js/angular.js"> </script>
<script type="text/javascript">

  function HelloWorldCtrl($scope){
       $scope.helloMessage="Hello World";
  }

</script >

</body>
</html>
4

1 回答 1

21

你忘了ng-app,把它放在body标签里:

 <body ng-app>

看看工作示例

于 2013-07-29T12:23:04.753 回答