gpt4 book ai didi

html - 我如何在内存数据库中使用我的 Ionic 应用程序

转载 作者:太空宇宙 更新时间:2023-11-04 02:41:18 25 4
gpt4 key购买 nike

我是 ionic 应用程序开发和内存数据库的新手,我如何将内存数据库用于我的 ionic 应用程序。对于我的 Ionic 应用程序,我正在使用 AngularJS、HTML5 和 CSS。我需要从 My Ionic 应用程序到 Inn 内存数据库的数据交易。请给我一些有用的链接。提前致谢。

最佳答案

尝试 this方式..!

安装本地存储的命令

bower install a0-angular-storage

在 index.html 中

<script src="lib/angular-storage.min.js"></script>

制作服务:

angular.module('app', ['angular-storage'])
.factory('UserDetailsService', function ( store ,$rootScope) {
var self = {};
self.getUsers = function () {
var users = store.get('_userList');
if (users){
return users;
}else{
return null;
}
};
self.setUsers = function(UserList) {
$rootScope.users = UserList;
store.set('_userList', UserList);
};
return self;
});

在 Controller 中:

.controller('UserCtrl', function ($scope,  UserDetailsService,store) {
//to store data..!
$scope.doLogin = function () {
$http.post('**** URL *****', $scope.loginData).
success(function (response) {
$scope.users = response.result;
UserDetailsService.setUsers($scope.users);// call to service..!
}).error(function (response) {
});
};
//to get local store list
$scope.users = UserDetailsService.getUser();
//to remove local store data
$scope.toRemoveLocalData = function () {
store.remove('_userList');
};
})

再来一个simple way ..

关于html - 我如何在内存数据库中使用我的 Ionic 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34693346/

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