在React Native中,您应该将迁移代码或代码放在哪里以删除领域数据库(忽略迁移),并且只运行一次?
我每次回到登录屏幕时都尝试删除Realm数据库。当我尝试登录时,它应该将用户信息保存到Realm中,然后应用程序正常进行。但事实并非如此,似乎因为Realm数据库被删除了,它无处可以保存它。我原本以为我登录后,通过将用户信息保存到Realm中,它会初始化Realm,然后将用户保存在Realm中。
在调试模式下,即使删除Realm数据库,一切都正常运行。调试模式慢很多,所以在某个地方有时间问题吗?
是否有初始化Realm的方法?
答案 0 :(得分:2)
这是我为使迁移工作而采取的措施。
我realm.js
位于/src
,我保留了所有的反应文件。当我需要使用我的领域时我import realm from 'path/to/realm.js';
在realm.js
我有我的旧架构和我的新架构。
import Realm from 'realm';
const schema = {
name: 'mySchema',
properties: {
name: 'string',
}
};
const schemaV1 = {
name: 'mySchema',
properties: {
name: 'string',
otherName: 'string',
}
};
请注意它们具有相同的名称。然后在我realm.js
的底部,我曾经export default new Realm({schema: [schema]});
我现在有了这个:
export default new Realm({
schema: [schemaV1],
schemaVersion: 1,
migration: (oldRealm, newRealm) => {
// only apply this change if upgrading to schemaVersion 1
if (oldRealm.schemaVersion < 1) {
const oldObjects = oldRealm.objects('schema');
const newObjects = newRealm.objects('schema');
// loop through all objects and set the name property in the new schema
for (let i = 0; i < oldObjects.length; i++) {
newObjects[i].otherName = 'otherName';
}
}
},
});
如果您不需要迁移数据,则可以使用新的架构版本和新架构打开Realm,它也可以正常运行。
答案 1 :(得分:0)
如果刚刚添加或删除了架构字段,则可以执行空迁移。这是我的realm.js文件:
import Realm from 'realm';
//models
import Registros from '../models/registros';
import Local from '../models/local';
export default function getRealm() {
return Realm.open({
schema: [Registros, Local],
schemaVersion: 1, //add a version number
migration: (oldRealm, newRealm) => {
},
});
}