首页 > Web开发 > 详细

$http.get(...).then(...).error is not a function

时间:2017-03-01 22:57:42      阅读:4020      评论:0      收藏:0      [点我收藏+]

1.6 新版本的AngularJs中用thencatch 代替了success和error,用PRomise规则。
更改写法:

1 $http.get(‘/api/user/showname2‘, {
2 
3 }).then(function (result) {
4   
5   alert(result.data);
6 
7 }).catch(function (result) {
8 
9 });

 

$http.get(...).then(...).error is not a function

原文:http://www.cnblogs.com/junglexj/p/6486390.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!