admin管理员组文章数量:1344241
I want to popup an alert message from an angularJS function, but it's not working.
Script
app.controller("APIController", function ($scope, $http) {
$scope.saveSubs = function () {
var sub = {
UserName: $scope.username,
Password: $scope.password
};
if ($scope.username === 'admin' && $scope.password === 'admin') {
window.location.href = '/Home/HotelSearchRedirect';
} else {
$window.alert("User name or password wrong. please enter correct username or password.");
}
};});
What is wrong with this code?
I want to popup an alert message from an angularJS function, but it's not working.
Script
app.controller("APIController", function ($scope, $http) {
$scope.saveSubs = function () {
var sub = {
UserName: $scope.username,
Password: $scope.password
};
if ($scope.username === 'admin' && $scope.password === 'admin') {
window.location.href = '/Home/HotelSearchRedirect';
} else {
$window.alert("User name or password wrong. please enter correct username or password.");
}
};});
What is wrong with this code?
Share Improve this question edited Jun 2, 2017 at 8:46 Olezt 1,7481 gold badge18 silver badges31 bronze badges asked Jun 2, 2017 at 5:43 sanjeewasanjeewa 6141 gold badge8 silver badges18 bronze badges 1-
Use
window
instead of$window
– user688 Commented Jun 2, 2017 at 5:58
4 Answers
Reset to default 5$window
needs to be injected.
app.controller("APIController", function ($scope, $http,$window) {
$scope.saveSubs = function () {
var sub = {
UserName: $scope.username,
Password: $scope.password
};
if ($scope.username === 'admin' && $scope.password === 'admin') {
window.location.href = '/Home/HotelSearchRedirect';
} else {
$window.alert("User name or password wrong. please enter correct username or password.");
}
};});
Just replace this code.
Only alert("User name or password wrong. please enter correct username or password.") will be suffice.
There is no need of window or $window.
You should use window
instead of $window
,
window.alert("User name or password wrong. please enter correct username or password.");
Inject $window
.
app.controller("APIController", function ($window, $scope, $http) {
// Code
});
本文标签: javascriptwindowalert not working inside angular functionStack Overflow
版权声明:本文标题:javascript - $window.alert not working inside angular function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737034a2530197.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论