gpt4 book ai didi

javascript - 在 AngularJS 中创建 Controller 时出现问题

转载 作者:行者123 更新时间:2023-12-03 03:33:59 24 4
gpt4 key购买 nike

我是 AngularJS 新手。我正在使用 html 和 angularjs 中的表单开发登录功能。有三个文件1.index.html2. 应用程序.js3.LoginCntrl.js

我已将两个 js 文件包含在 .html 文件中,但 ng-controller 无法工作。它不从 Controller 获取值,甚至不调用 Controller 中的函数。 js 文件正在执行,但我认为我的 html 文件有问题。

这是三个文件的代码:

index.html

<html>

<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="../js/app.js"></script>
<script src="../js/controllers/LoginCntrl.js"></script>
<script src="../js/controllers/RegisterCntrl.js"></script>
<script src="../js/services/AuthSrvc.js"></script>
<link rel="stylesheet" href="../css/styles.css">
</head>

<body ng-app="agile">
<div class="container-fluid">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="/">AGILE</a>
</div>
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li class="active"><a href="#">Signin</a></li>
<li><a href="#">Signup</a></li>
</ul>
</div>
</nav>
<div class="row panel panel-default" ng-controller="LoginCntrl">

<div class="panel-heading">
<center><b>{{title}}</b></center>
</div>
<div class="panel-body login-tab">
<form novalidate method="post" ng-submit="login(username,password)">
<div class="form-group"><input type="text" placeholder="Username..." ng-model="username" value="" class="form-control uname" size="15"></div>
<div class="form-group"><input type="password" placeholder="Password..." ng-model="password" value="" class="form-control pass" size="15"></div>
<input type="submit" class="btn btn-primary btn-block" value="Login">
</form>
</div>
</div>

</div>
</body>

</html>

app.js

angular.module("agile",[]);
console.log('app initiated')

LoginCntrl.js

angular.module("agile",[]).controller("LoginCntrl",['$scope','$http','Auth','$location',function($http,Auth,$scope,$location){              
$scope.title ="Signin";
console.log($scope.title);
$scope.login = function(username,password){
Auth.login(username,password).then(
function(user)
{
$scope.user=user;
$location.path("/posts");
},
function(res)
{
$location.path("/")
}
)
}
}])

最佳答案

您的代码中有几个错误:

首先,当您使用 angular.module("agile",[]); 时,您创建一个模块(请注意 [] )。因此,在为该模块创建 Controller 时,不需要再次创建。

改变

angular.module("agile",[]).controller(...);

angular.module("agile").controller(...);
<小时/>

其次,您应该在 dependency injection 中保持相同的顺序。关于您的 Controller 创建:

.controller("LoginCntrl", ['$scope','$http','Auth','$location', 
function($scope, $http, Auth, $location) {

关于javascript - 在 AngularJS 中创建 Controller 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45954038/

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