React-Native OnPress函数给出错误

时间:2016-08-11 06:52:44

标签: android react-native

我有一个带代码的js文件 -

var List = React.createClass({
  propTypes: {
    hprops: React.PropTypes.object
  },

  renderRow: function(rowData) {
    return <HelloView {...rowData} style={styles.row} />
  },

  render: function() {
    var dataSource = ds.cloneWithRows(data);

    return (
      <View style={styles.container}>
        <Text style={styles.headline}>Hello</Text>
        <Button
          style={styles.button}
          onPress={() => this.notifyPresence(dataSource)}>
          Notify presence!
        </Button>
        <ListView
          dataSource={dataSource}
          renderRow={this.render.bind(this)}
          enableEmptySections
        />
      </View>
    );
  },
});

另一个index.android.js,其中声明了这个notifyPresense函数:

_notifyPresence(data) {
          console.log(data);
        }

按下按钮,我收到错误,因为未定义的功能。 任何人都可以提出建议。

0 个答案:

没有答案