目前我使用Angularjs框架开发cordova应用程序。我想获得值返回$ cordovaSQLite.execute()函数。通常我通过使用.then(result())得到$ cordovaSQLite.execute()的返回值。但是,.then(result())函数的值结果不能在外部.then(result())中使用。是否有任何解决方案可以获得像result.rows.item(0).UserName;在我的.then(result())函数之外。以下是我的代码。
var channelNameQuery = "SELECT * FROM chat_friend WHERE UserName=?"
var channelNamePromise = $cordovaSQLite.execute(db, channelNameQuery, [channelName]).then(function (result){
var abc = result.rows.item(0).UserName;
console.log(abc);
})
接下来,我尝试使用以下代码来获取ChannelNamePromise值。它未能获得价值。
var abc = channelNamePromise.rows.item(0).UserName;
console.log(abc);
答案 0 :(得分:2)
你可以这样做。
让我们在AppCtrl中创建一个全局方法,以便您可以在多个控制器中使用它。
.controller('AppCtrl', function ($scope,$rootScope) {
$rootScope.getFromDB = function (channelName) {
var deferred = $q.defer();
var items = [];
var query = "SELECT * FROM chat_friend WHERE UserName=?";
$cordovaSQLite.execute(db, query, [channelName]).then(function (res)
{
for (var index = 0; index < res.rows.length; index++) {
var item = res.rows.item(index);
items.push(item);
}
deferred.resolve(items);
}, function (err) {
deferred.reject(items);
console.error(err);
});
return deferred.promise;
};
})
现在在您的控制器中
.controller('ExampleCtrl', function ($scope,$rootScope) {
$rootScope.getFromDB('yourChannelName').then(function (data) {
console.log('Result'+data); //success block, do whatever you want
});
})
您也可以将结果分配给任何数组,例如
.controller('ExampleCtrl', function ($scope,$rootScope) {
$scope.resultArr = $rootScope.getFromDB('yourChannelName').then(function (data) {
$scope.resultArr = result; //do whatever you want here
});
//outside then block you can use it.
console.log("Result"+ $scope.resultArr);
})