gpt4 book ai didi

javascript - 提供应用程序名称时未激活 AngularJS 解析器

转载 作者:搜寻专家 更新时间:2023-11-01 05:14:31 25 4
gpt4 key购买 nike

使用 AngularJS,以下 html 代码打印 {{1+1}} 而不是 2

<!doctype html>
<html lang="en" ng-app="myApp">
<head>
<script src="/js/angular.min.js"></script>
</head>
<body>
{{1+1}}
</body>
</html>

如果我像下面这样删除“myApp”,它会正确打印 2。

<!doctype html>
<html lang="en" ng-app>
<head>
<script src="/js/angular.min.js"></script>
</head>
<body>
{{1+1}}
</body>
</html>

最佳答案

因为你没有指定模块 myApp 所以它会在错误时爆炸。

打开 Web Inspector 控制台进行查看。

// adding this will fix it
angular.module('myApp', []);

关于javascript - 提供应用程序名称时未激活 AngularJS 解析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10679727/

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