因此,我获得了400个对象的列表,并将其放入findAllSorted()
的集合中。然后,我做了findAllSorted()
,然后我得到一个空数组。所以我调试试图找出问题所在。我用Stethos检查了Realm数据库,然后我看到了我在那里创建的对象,但是当我copyToRealm()
时,它说什么都没有。有关于copyToRealm()
的内容是异步还是其他内容。因为在我调用// Grab 'parent' div - History_0 or by class name 'rss-feed'
var parent = document.querySelector('.rss-feed');
var childCount = 0; // Just want to spit this out on the page so you can see.
// Check if parent isn't null
if(parent !== null){
// Get child elements by class name
var childElements = parent.getElementsByClassName('entry-wrapper');
// Check if child elements isn't null...
if(childElements !== null){
// Print results, just so we can look.
childCount = childElements.length;
console.log(childCount);
}
}
的那一行之后,我希望之后会有结果但是没有。
答案 0 :(得分:0)
答案可在上面的评论中找到。