我正在尝试制作一个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>
答案 0 :(得分:0)
它工作正常,只需关闭脚本引用,如下所示:
<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'
}
<html>
<head><title>New Version!</title>
</head>
<body ng-app="app">
<div ng-controller="appcontr">
<h1> {{name}}</h1>
<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>
</body>
</html>