如何将该代码投入使用?(这是来自https://github.com/paulocaldeira17/angular-websql)我的意思是我想传递表名,然后与用户一起获取数组。我认为我应该使用承诺,但我不知道如何开始。
$scope.db.selectAll("table_users", function(results) {
$scope.users = [];
for(var i=0; i < results.rows.length; i++){
$scope.users.push(results.rows.item(i));
}
$scope.$apply();
})