1.6 新版本的AngularJs中用then和catch 代替了success和error,用PRomise規則。更改寫法:api
1 $http.get('/api/user/showname2', { 2 3 }).then(function (result) { 4 5 alert(result.data); 6 7 }).catch(function (result) { 8 9 });