1.在使用Angular 1.6版本的$http服务时会抛出异常:$http.get(...).success is not a function
或者$http(...).success is not a function
异常代码如下:
//请求api $http.get('/api/user/showname',{ params: { name: '张三' } }).success(function (data,status,config,headers) { console.info(data); alert(data); }).error(function (data) { console.info(data); });
异常信息如下:
angular.js:14328TypeError: $http.get(...).success is not a function at new <anonymous> (test2.html:20) at Object.invoke (angular.js:4842) at R.instance (angular.js:10695) at n (angular.js:9572) at g (angular.js:8881) at angular.js:8746 at angular.js:1843 at m.$eval (angular.js:17972) at m.$apply (angular.js:18072) at angular.js:1841
究其原因,新版本的AngularJs中取消了success和error,用promise规则。
更改写法:
$http.get('/api/user/showname2',{ params: { name: '张三',age: 'abc' } }).then(function (result) { //正确请求成功时处理 console.info(result); alert(result.data); }).catch(function (result) { //捕捉错误处理 console.info(result); alert(result.data.Message); });正常相应:
异常400相应:
更多:
原文链接:https://www.f2er.com/angularjs/148218.html