我正在Visual Studio上使用C#语言在mvc上进行项目。这个项目是由我的一位同事传递给我的,问题是当我尝试登录时我无法登录。多次检查,我认为问题出在角度控制器上。事实上,当我尝试登录时,即使输入正确的数据,我也会运行“ err”。给我的错误是:“无法加载资源:net :: ERR_CONNECTION_REFUSED [http://localhost:1336/token]”。
LoginController.prototype.doLogin = function(){
var that = this;
this.authService.login(this.vm.username, this.vm.password).then(
function(response) {
that.layoutService.gotoHome();
}, function(err) {
that.vm.hasInvalidData = true;
}
);
}
答案 0 :(得分:0)
您的本地计算机的端口1336上似乎没有任何运行,因此导致Angular AJAX调用失败。确保在Visual Studio中将MVC项目配置为侦听端口1336,并将其设置为“启动”项目。