4

我正在尝试创建一个 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>}
        />
      );
    }
}
4

2 回答 2

0

你打电话的时候有这个错误cloneWithRows吗?如果是这样,您可能需要cloneWithRowsRealm.Results使用Realm.ListView. 这是在此处的 Realm 示例中完成的。所以也许尝试使用Realm.ListView并将您的代码更改为:

let pictures = [ realm.objects('picture').filtered('new == true').snapshot() ];
于 2016-07-31T23:53:15.380 回答
0

我在我的渲染方法中找到了原因,

代替:

render() {
  return (
    <ListView
      dataSource={this.state.dataSource}
      renderRow={(rowData) => <Text>{rowData}</Text>}
    />
  );
}

我应该这样做:

render() {
  return (
    <ListView
      dataSource={this.state.dataSource}
      renderRow={(rowData) => <Text>{rowData.path}</Text>}
    />
  );
}

由于rowData是一个对象,ReactNative 无法在 Text 元素中呈现它

于 2016-08-10T17:30:18.293 回答