我有一个数组范围变量。
$ scope.rangolis = [];
我从远程调用获取数据并将数据推送到数组。
Service.getRangolis(page, rowcount, type, user).then(function (results) {
$scope.rangolis.push(results);
});
但是,数据未显示在视图中。没有任何事情发生。
我尝试了申请()并且说#34; 已经在申请中"。
我也尝试了下面的代码,但它说"摘要已经在进行中" 错误。
[].push.apply($scope.rangolis, results);