我正在使用Realm数据库在我的React本机应用程序中存储用于页面导航的数据。在调用realm.close()后以下方法停止工作
能否请您建议我可能是什么问题。
export const getStorageProtags = () => {
return Realm.open({
schema: [ProtagsSchema]
}).then(realm => {
const protags = realm.objects('Protags');
realm.close();
return protags[0];
});
}