1.6 新版本的AngularJs中用then和catch 代替了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 });
1.6 新版本的AngularJs中用then和catch 代替了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 });
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。