在注册页面,点击注册按钮的时候,报错
来源:6-6 用户模块逻辑编写-使用装饰器
慕粉1628159798
2017-04-11
在注册页面,点击注册按钮的时候,报错 Possibly unhandled rejection: error
$scope.submit=function () {
$http.post('/data/regist.json',$scope.user).then(function (resp) {
console.log(resp);
});
};
写回答
1回答
-
路瑶知马丽3480005
2017-04-11
将app.config(['$qProvider', function ($qProvider) { $qProvider.errorOnUnhandledRejections(false); }]);加入到你的配置中,可以解决这个问题。
212017-04-19
相似问题