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

Posted Mdreame

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$http.get(...).then(...).error is not a function相关的知识,希望对你有一定的参考价值。

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 questions

Vue http.get vue-resource

离子 2 http.get() 问题

控制台日志未定义

几种vue的数据交互形式

常用vue请求交互数据方式