$delegate.get(...).success is not a function这是什么原因
来源:6-7 用户模块逻辑编写-登录

慕尼黑3433222
2017-07-28
写回答
1回答
-
angular1.6版本删除了success函数
在then函数中读取数据吧
$http.get('xxx').then(function(resp) {
$scope.xxx = resp.data
})
012017-07-28
相似问题
$delegate.get(...).success is not a function这是什么原因
来源:6-7 用户模块逻辑编写-登录
慕尼黑3433222
2017-07-28
1回答
angular1.6版本删除了success函数
在then函数中读取数据吧
$http.get('xxx').then(function(resp) {
$scope.xxx = resp.data
})
相似问题