使用react-native导航器时 我正在使用DisplayCustomSchema组件:
this.props.navigator.push({
id: 'DisplayCustomSchema',
name: 'DisplayCustomSchema',
org:this.props.org
});
在DisplayCustomSchema组件componentDidMount中,我正在调用一个ajax帖子并获取一些数据。
var DisplayCustomSchema = React.createClass({
componentDidMount : function(){
ajaxpost(data){ // example only
this.props.record=data
// I am trying to move the response data to props because I am using this data in my saveRecord function but it isn't showing up there.
}
}
render: function(){
<View>
<TouchableHighlight style={styles.touchButtonBorder} underlayColor="#ffa456" onPress={saveRecord.bind(this,this.props)}>
<Text style={styles.button}>SAVE</Text>
</TouchableHighlight>
</View>
}
})
为什么不将数据分配给道具?
答案 0 :(得分:2)
@zvona是对的,props
是只读的。不知道你是如何让它在reactjs中工作的,但是你不应该写这样的道具。如果您需要这样做,请使用state
。