gpt4 book ai didi

javascript - 数据绑定(bind)在我的 AngularJS 应用程序中不起作用

转载 作者:行者123 更新时间:2023-11-30 12:34:34 25 4
gpt4 key购买 nike

我有以下 html:

<!DOCTYPE HTML>
<html>
<head>
<title>Basic</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js type="text/javascript">
</script>
</head>
<body>
<div ng-app="myApp">
<input ng-model="to" type="email"
placeholder="Recipient here.."/>
<textarea ng-model="emailBody"
placeholder="Email body here..">
</textarea>
<h2> {{ emailBody }} </h2>
</div>
</body>
</html>

我正在引用来自 textArea 的 emailBody 数据,但它没有绑定(bind)关联的数据。它只是按字面意思键入 {{ emailBody }}。

我做错了什么?

最佳答案

假设您是第一次使用 Angular,您可能希望使用不带值的“ng-app”参数,这将设置注入(inject)上下文而不将其映射到命名的应用程序 Controller (您的示例中缺少该 Controller ) ).另请注意,您缺少脚本标记的 src 参数的结束引号。

这是您的示例,通过这两个修复,按预期工作。

<!DOCTYPE HTML>
<html ng-app>
<head>
<title>Basic</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js" type="text/javascript"></script>
</head>
<body>
<div>
<input ng-model="to" type="email" placeholder="Recipient here.."/>
<textarea ng-model="emailBody" placeholder="Email body here..">
</textarea>
<h2> {{emailBody}} </h2>
</div>
</body>
</html>

关于javascript - 数据绑定(bind)在我的 AngularJS 应用程序中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26499115/

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