gpt4 book ai didi

javascript - Cordova Angularjs : How to get value return from CordovaSQLite

转载 作者:行者123 更新时间:2023-12-01 03:59:44 25 4
gpt4 key购买 nike

目前我使用 Angularjs 框架开发 cordova 应用程序。我想获得值(value)返回 $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);

最佳答案

你可以这样做。

让我们在 AppCtrl 中创建一个全局方法,以便您可以在多个 Controller 中使用它。

.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 中

.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);
})

关于javascript - Cordova Angularjs : How to get value return from CordovaSQLite,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42287921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com