我正在尝试创建一个 react-native ListView 来呈现 Realm 返回的结果。我一直按照我找到的关于 react-native 的 ListView 以及如何使用 Realm 的说明进行操作。
但是我总是遇到同样的错误:Objects are not valid as a React child (found: [object Results]). If you meant to render a collection of children, use an array instead or wrap the object using createFragment(object) from the React add-ons. Check the render method of 'Text'.
从我从领域文档和其他文章中了解到的结果对象应该表现得像一个 javascript 列表,因此应该被接受到 cloneWithRows 方法中。
如果有人可以告诉我我做错了什么或如何解决这个问题,将不胜感激。
PS 我已经尝试过 react-native 的 ListView 和 Realm 的 ListView 并且两者的行为方式相同。
import React, { Component } from 'react';
import {
StyleSheet,
View,
Text,
Navigator,
TouchableHighlight,
TouchableOpacity,
//ListView,
} from 'react-native';
import { ListView } from 'realm/react-native';
import realm from './myrealm'
class contextview extends Component {
getState() {
console.log("getInitialState");
var ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
let pictures = [ realm.objects('picture').filtered('new == true') ];
console.log("pictures: " + pictures);
return {
//dataSource: ds.cloneWithRows(['row 1', 'row 2', 'row 3']),
dataSource: ds.cloneWithRows(pictures)
};
}
constructor(props)
{
super(props);
this.state = this.getState();
this.bindMethods();
}
render() {
return (
<ListView
dataSource={this.state.dataSource}
renderRow={(rowData) => <Text>{rowData}</Text>}
/>
);
}
}