gpt4 book ai didi

javascript - 在 react-native 中将嵌套 Realm 对象转换为 json

转载 作者:行者123 更新时间:2023-12-01 15:44:33 26 4
gpt4 key购买 nike

我在我的 react-native 应用程序中定义了嵌套 Realm 对象:

export const userSchema = {
name: 'User',
primaryKey: 'id',
properties: {
id: 'string',
user_id: 'string',
password: 'string',
demographics: 'Demographics',
notes: 'string'
}
}

export const demographicsSchema = {
name: 'Demographics',
primaryKey: 'id',
properties: {
id: 'int',
age: 'int',
height: 'float',
weight: 'float',
gender: 'int',
}
}

当我查询 User从 Realm ,我想将其转换为 Json 并通过 http 请求发送到后端服务器。但是,在搜索将 Realm 对象转换为 Json 的模块后,我没有找到任何有用的内容来执行此特定任务。如果有人知道在 react-native 中将嵌套 Realm 对象转换为 Json 的简单方法,我将不胜感激。

最佳答案

目前 Realm 并没有在他的 api 中集成这种功能,但是你可以尝试这样的事情:

function realmToPlainObject(realmObj) {
return JSON.parse(JSON.stringify(realmObj));
}

或者像那样,但它会很慢! :
var plainResults = Array.prototype.map.call(resultsCars, (car) => {
var object = {};

for (var property of YourSchema.properties) {
object[name] = car[name];
}

return object;
});

我知道这可能是多余的,但更好的方法是通过在你的 Realm 对象中获取你想要的每个键来创建 json 对象。

关于javascript - 在 react-native 中将嵌套 Realm 对象转换为 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49309908/

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