我试图运行一个基本的AngularJS示例,但它没有抛出任何模块:模块名称错误。 以下是jsFiddle链接:
<body ng-app="myApp" ng-controller="myCtrl">
<input ng-model="msg" />
<p>
{{msg}}
</p>
</body>
// the main (app) module
var myApp = angular.module("myApp", []);
// add a controller
myApp.controller("myCtrl", function($scope) {
$scope.msg = "hello world";
});