我已经尝试在删除SQLite cordova插件上的一行数小时后用范围刷新视图,但没有运气。
代码:$scope.remove = function() {
var x = document.getElementById("name").textContent;
$cordovaSQLite.execute(db, 'DELETE from table WHERE name=?', [x])
.then(function(res) {
var index = $scope.listItems.indexOf(x);
$scope.listItems.splice(index, 1);
}, function(error) {
console.log(error.message);
})
};
删除是成功的,但是留下一个空白页面,要在我的Ionic平台应用程序上刷新,我必须转到其他页面而不是回去。
其他代码:$scope.showConfirm = function () {
var x = document.getElementById("name").textContent;
var confirmPopup = $ionicPopup.confirm({
title: 'Deleting Journal Entry',
template: 'Are you sure you want to delete this item ?'
});
confirmPopup.then(function (res) {
if (res) {
var query = "DELETE FROM chocolates where name = ?";
$cordovaSQLite.execute(db, query, [x]);
$state.go($state.current, $stateParams, {reload: true, inherit: false});
console.log(x);
} else {
console.log('You are not sure');
};
});
};
此代码也成功删除了我的数据库中的行,但刷新功能不起作用。与之前的代码相同,我必须转到其他页面并回来查看更新后的视图。
尝试了alternative 1和alternative 2
的许多答案非常感谢我能找到的任何帮助,谢谢
答案 0 :(得分:0)
经过几天的调试和阅读后,终于找到了解决方案!
if (res) {
$ionicPlatform.ready(function () {
$scope.chocolates = [];
var query = "DELETE FROM chocolates where name = ?";
$cordovaSQLite.execute(db, query, [x]);
$cordovaSQLite.execute(db, 'SELECT * FROM chocolates ORDER BY choc_id DESC LIMIT 1', []).then(function (res) {
if (res.rows.length > 0) {
for (var i = 0; i < res.rows.length; i++) {
$scope.chocolates.push(res.rows.item(i));
}
}
}, function (err) {
console.error(err);
});
$scope.$apply();
});
} else {
console.log('You are not sure');
};
到目前为止,这是更清洁的解决方案,如果没有人想出更好的主意,我会接受我自己的答案。希望也可以帮助那里的人。