gpt4 book ai didi

react-native - 通过realm.js查找对象

转载 作者:行者123 更新时间:2023-12-04 04:37:23 27 4
gpt4 key购买 nike

您好,我使用带有 react-native 的 Realm 数据库。

我有 Item模式并按 id 查找一项。

var items = realm.objects('Item');
var item = items.filtered('id == $0', item_id);
console.log(item.name); // It should be printed name, but undefined

我找不到项目。所以使用 lodash。
var item = _.find(realm.objects('Item'), _.matchesProperty('id', item_id));
console.log(item.name); // print "ABCD"

如何通过 id 获取元素?

最佳答案

filtered返回 Results与 javascript 非常相似的对象 Array .

所以你的代码应该是:

var items = realm.objects('Item').filtered('id == $0', item_id);
var item = items[0];
console.log(item.name); // should print the name

关于react-native - 通过realm.js查找对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35755179/

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