gpt4 book ai didi

javascript - 使用空字符串 ("") 作为 ng-app 的名称

转载 作者:行者123 更新时间:2023-12-02 15:49:58 26 4
gpt4 key购买 nike

我想知道为什么 ng-app 使用空字符串似乎有问题。在 example由w3school提供,我尝试使用空字符串来命名ng-app,如下所示,但失败了。

<!DOCTYPE html>
<html>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
</script>
<body>

<p>Try to change the names.</p>

<div ng-app="" ng-controller="myCtrl">

First Name: <input type="text" ng-model="firstName"><br>
Last Name: <input type="text" ng-model="lastName"><br>
<br>
Full Name: {{firstName + " " + lastName}}

</div>

<script>
var app = angular.module('', []);
app.controller('myCtrl', function($scope) {
$scope.firstName= "John";
$scope.lastName= "Doe";
});
</script>

</body>
</html>

即使创建 "" 也会使 ng-app 指令起作用。有什么想法吗?

我想知道这个问题的原因是我学到了一个在不初始化 Controller 的情况下实现相同功能的示例,并且 ng-app 是一个空字符串。

<!DOCTYPE html>
<html>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
</script>
<body>

<div ng-app="" ng-init="firstName='John'">

<p>The name is <span ng-bind="firstName"></span></p>

</div>

</body>
</html>

最佳答案

您必须为模块设置名称,否则不使用模块并从 html 中删除“ng-app”。

关于javascript - 使用空字符串 ("") 作为 ng-app 的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31923949/

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