gpt4 book ai didi

javascript - 找不到 AngularJS Controller ,因为未定义

转载 作者:太空狗 更新时间:2023-10-29 16:35:20 25 4
gpt4 key购买 nike

我在运行以下示例时收到 AngularJS 错误参数错误,请告诉我哪里做错了?实际上,如果我在外面/正常运行,下面的代码工作正常,但是当我在我的应用程序中复制/粘贴这段代码时,它给出了以下错误。 (此页面/选项卡从我的应用程序的 Controller 中显示,例如:TestController,它在 coffeescript 中可用。但我不需要任何 coffeescript 来满足此要求,我需要在 AngularJs 中使用它。因此,在此选项卡中,我需要显示在代码/按钮下方。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>

<script>

var myApp = angular.module('myApplication', []);

myApp.controller('TestController', ['$scope', function($scope){
$scope.test = function(){
alert("Success");
}
}]);
</script>
</head>
<body>
<div ng-app="myApplication">
<div ng-controller="TestController">
<div class="tab-pane" id="wizards">

<button type="button" ng-click="test();">Test</button>

</div></div></div>
</body>
</html>

错误:错误:[ng:areq] http://errors.angularjs.org/1.4.8/ng/areq?p0=TestController&p1=not%20a%20function%2C%20got%20undefined

最佳答案

Plunker为我工作

<head>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"> </script>

<script src="script.js"></script>
</head>

<body>
<div ng-app="myApplication">
<div ng-controller="WizardController">
<button ng-click="test()">Test</button>
</div>
</div>
</body>

关于javascript - 找不到 AngularJS Controller ,因为未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34196082/

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