【发布时间】:2017-08-17 02:17:34
【问题描述】:
我正在尝试制作一个 AngularJS 应用程序。但是我收到了这个错误:
由于
无法实例化模块应用程序
这是我的代码:
<html>
<head><title>New Version!</title>
</head>
<body ng-app="app">
<div ng-controller="appcontr">
<ul>
<li>A new XSLT engine is added: Saxon 9.5 EE, with a namecense (thank you Michael Kay!)</li>
<li>XSLT 3.0 support when using the new Saxon 9.5 EE engine!</li>
<li>Preview your result as HTML when doctype is set to HTML (see this example)</li>
<li>Preview your result as PDF when doctype is set to XML and your document starts with root element of XSL-FO.
Apache FOP is used to generate the PDF
</li>
<li>Added some namenks to useful XSLT sites</li>
</ul>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular.js"/>
<script>
angular.module('app', []).controller('appcontr', appcontr)
function appcontr($scope) {
$scope.name = 'dd'
}
</script>
</body>
</html>
【问题讨论】:
-
实例化失败有什么原因吗?
-
由于什么?错误消息包含有关问题的信息,并且在问题中被省略了。它可以通过做某事来解决。
-
Uncaught Error: [$injector:modulerr] Failed to instantiate module app due to: Error: [$injector:nomod] Module 'app' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument. -
由于未能关闭第一个
<script>标记,angular.module代码将被忽略。
标签: javascript angularjs