我正在尝试将数据从列表加载到转发器但是它无法正常工作,数据返回,学生列表但未在屏幕上显示。
控制器:
db.collection('users').update(
{"id":user.id},
{$set:{"users.labels":"hola"}})
HTML:
$scope.students=[];
$scope.$$postDigest(function () {
$http.get("/getAllStudents"/*, {timeout: canceler.promise}*/).
then(function (response, status, headers, config) {
if (response.data) {
$scope.students=response.data;
}
});
});
答案 0 :(得分:0)
在$http.get
中进行postDigest
呼叫时,似乎数据已成功插入$scope.students
内。请检查是否存在任何scope
问题,因为根据提供的详细信息,它应该有效,除非您错过提及任何其他详细信息。