首页 > 网站 > WEB开发 > 正文

Angular 1.6提示$http.get(...).success is not a function

2024-04-27 15:03:23
字体:
来源:转载
供稿:网友

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相应:

更多:

AngularJS $http简介1

使用$watch来监视属性或对象的变化


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表