gpt4 book ai didi

javascript - 找不到名称为 NameCtrl 的 Controller

转载 作者:行者123 更新时间:2023-11-30 09:55:11 26 4
gpt4 key购买 nike

我正在使用在 STS (Eclipse) 中配置的 AngularJS。我们如何修复此错误?

Cannot find controller with name NameCtrl.

HTML

<html ng-app>
<head>
<meta charset="ISO-8859-1">
<title>AJ Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.0/angular.min.js" ></script>
<script>
function NameCtrl($scope){
$scope.firstName = 'John';
$scope.lastName = 'Smith';
}
</script>
</head>
<body ng-controller="NameCtrl">
First name:<input ng-model="firstName" type="text"/>
<br>
Last name:<input ng-model="lastName" type="text"/>
<br>
Hello {{firstName}} {{lastName}}
</body>
</html>

最佳答案

从 Angular vs1.3.x 开始,您必须将 Controller 与模块绑定(bind)才能使用。

像这样

angular
.module("app",[])
.controller("NameCtrl",function($scope){
$scope.firstName = 'John';
$scope.lastName = 'Smith';
})

在html中添加模块名

<html ng-app="app">

JSFIDDLE

关于javascript - 找不到名称为 NameCtrl 的 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34417862/

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