问题标签 [data-persistence]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c - 在 c 中使用 ARM MCU 持久化数据
我对嵌入式编程相对较新,并且无法找到将数据保存到 MCU 的方法,因此它在重新启动期间仍然存在。
我在某处读到需要使用 PROGMEM 保存到 MCU 闪存。但还没有找到任何进一步的细节。
我需要能够执行以下操作:-
- 将字符串(设备名称)保存到 MCU。
- 需要时从 MCU 检索字符串(设备名称)。
我正在开发 ARM Cortex M4 微控制器
编辑:我刚刚注意到我正在使用的 ARM Cortex M4(TI TM4C123x 系列)有 2k 的 EEPROM,所以我假设这是持久数据的更好选择。但是怎么做?
javascript - extjs 商店更新未触发
我正在使用 Extjs 4.1 MVC,我有一个简单的商店:
我想从控制器处理它的更新事件,所以这是控制器:
但是当我更新商店时,它没有显示任何内容,请问我做错了什么?
sql - 如何在 iBATIS 中使用“或”语句编写查询?
我想使用动态查询或使用 iBATIS 的语句获取数据。
例如
我想将一组 ID 作为列表对象传递。
session - Spring MVC 3 - 多个控制器和视图之间的对象持久性
我的应用程序中有以下场景。
有多个控制器和视图。没有登录/注销功能,也没有传统的用户名/密码。应用程序直接对传入请求执行一些逻辑(无身份验证/授权)。
当用户浏览控制器和视图时,我需要将用户特定的数据保存在某个地方。这是必需的,因为我需要参考它,直到用户完全退出应用程序。基本上我需要在没有任何身份验证/授权功能的情况下保留用户数据。
我应该使用传统的 HttpSession 还是 Spring 的 @SessionAttribute 来存储所需的详细信息?或者有没有其他更好的方法来做到这一点?
提前致谢!
ios - 为什么返回视图时获取的数据不消失?
在我的视图控制器的viewDidLoad
方法中(它只调用一次,不像viewDidAppear
),我正在对数据进行网络请求。每当我切换视图并返回到第一个视图时,我注意到即使没有再次提取数据,旧数据仍会显示在屏幕上。我没有使用 Core Data,那么这些数据存储在哪里?如果数据显然已经持久化,为什么还要使用 Core Data?
android - How to store an image inside imageview permanently
I am new to android.
I created an Image View to display an image from the file browser and this is working correctly.
The problem is once i come out of my application and open it again. The image I selected isn't there in the image view.
That means only at the time I am using my application, the image is present inside the imageview. The next time I open it, the image is vanished and I have to select the image from the file browser again.
So how can I store the image permanently inside the imageview until I change that image?
ios - iPhone dev - 如何使用 RESTful 服务在 sqlite 服务器上存储和检索数据
我对 iOS 开发相当陌生,但我制作了一个 iPhone 应用程序,允许用户将简单的联系信息(姓名、电子邮件、电话、职位)键入一个视图,然后将其存储到我的 MAC 上的 sqlite 数据库中。我正在使用 FMDB 库来帮助解决这个问题。现在,我想使用 RESTful Web 服务将数据存储在某处的服务器上,而不是我的 MAC 上,但不知道如何开始。有什么建议么?任何有帮助的图书馆?
ruby-on-rails - 带有邪恶宝石的导轨。数据不会更新
我正在使用 Wicked gem 分多个步骤创建对象。一切似乎都运行良好,直到我意识到数据没有保存。我注意到它没有url: wizard_path
在表单构建器中出现时保存。当那不存在时,数据保存得很好,无论我在哪一步。这是我的对象构建器控制器的样子:
database - Liferay Service Builder - Database Persistence
i understand that persistence layer is where you store your data, and that not all data is persisted in the same manner -- some use databases, some use XML, some use a remote service.
What then is (as a verb) Database Persistence? I'm studying Liferay Service Builder and came across a definition that "it automates creation of interfaces and classes for database persistence"
In other words, What is database persistence in the context above in simple plain English!
ios - 我需要使用 plist 进行数据持久性。如何将视图控制器中的值存储到 plist 中,然后在表视图中显示该值?
因此,当我单击“查看用户记录”按钮时,我想显示视图控制器的 Score 和 Live 的任何值,并将其作为数组存储在 plist 中。然后 plist 中的那些值将显示在表格视图中