gpt4 book ai didi

javascript - Angular 1 无法将模块/ Controller 文件加载到 View /html 中

转载 作者:太空宇宙 更新时间:2023-11-04 13:04:57 24 4
gpt4 key购买 nike

var myApp = angular.module("myModule",[]);
myApp.controller("myController",function($scope){
$scope.name = "Hello Anjnee";
});


<html>
<head>
<script src="Scripts/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js">
</script>
</head>
<body ng-app="myModule">
<div ng-controller="myController">
<p>{{name}}</p>
</div>
</body>
</html>

我正在尝试在 html 页面中使用 $scope.name 的值。我将 .js 和 .html 文件分开。

最佳答案

您是否在浏览器中收到一些错误消息?代码看起来不错。可能是来自head中调用的CDN angular.min.js。我认为您必须将它放在 script.js 文件之前,因为 script.js 指的是尚未加载的 Angular 。

另外,在你的头上写道:

<head>`enter code here`</head>.

你必须评论“在此处输入代码”在 html 中注释代码的方式是这样的:

<!-- enter code here -->

否则,文件夹 Scripts 以大写字母开头。我建议您完全用大写字母或完全用小写字母书写,以提高可读性并减少混淆。

关于javascript - Angular 1 无法将模块/ Controller 文件加载到 View /html 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43709002/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com