假设我们有两个组件(父组件和子组件),基本上我要将父组件的状态变量发送到子组件的输入元素以执行一些操作。就像...
var Parent = React.createClass({
getInitialState: function() {
return {
name: ''
}
},
handleTextChange: function(e) {
this.setState({
name: e.target.value
})
},
render: function() {
return(
<div>
<input type="text" placeholder="Enter something" onChange={this.handleTextChange} />
<Child name={this.state.name} />
</div>
)
}
});
我的子组件如下所示..
var Child = React.createClass({
getInitialState: function() {
return {
childName: ''
}
},
componentWillReceiveProps: function(nextProps) {
this.setState({
childName: nextProps.name
})
},
handleChildTextChange: function(e) {
this.setState({
childName: e.target.value
})
},
render: function() {
return(
<div>
<input type="text" onChange={this.handleChildTextChange} placeholder={this.props.name} />
<h4>{this.state.childName}</h4>
</div>
)
}
});
基本上我想做三件事
有人能帮我做这个吗?
附:我的子
的组件目标文本不应该更新我的父
的状态变量(名称)我的意思是,没有回调作为道具。
我认为您只应该在获取初始状态值时将状态设置为this.props.name,而不是在每个componentWillReceiveProps示例中设置。一旦子级设置了它自己的状态,该值只会在子级中更改,而不会在父级中更改
var Child = React.createClass({
getInitialState: function() {
return {
childName: this.props.name,
owned: false
}
},
componentWillReceiveProps: function(nextProps) {
// only do it if the state isn't owned by the child
if (!this.state.owned) {
this.setState({
childName: nextProps.name,
owned: false
});
}
},
handleChildTextChange: function(e) {
this.setState({
childName: e.target.value,
owned: true
});
},
render: function() {
return(
<div>
<input type="text" onChange={this.handleChildTextChange} placeholder={this.props.name} />
<h4>{this.state.childName}</h4>
</div>
)
}
});
var Parent = React.createClass({
getInitialState: function() {
return {
name: ''
}
},
handleTextChange: function(e) {
this.setState({
name: e.target.value
})
},
render: function() {
return(
<div>
<input type="text" placeholder="Enter something" onChange={this.handleTextChange} />
<Child name={this.state.name} />
</div>
)
}
});
ReactDOM.render(<Parent />, document.getElementById('container'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id="container">
</div>
我有一个父状态,它有一个“主题”状态。 尝试将子元素的样式内联到 但问题是,当父组件状态更改时,子组件不会更新。当按下切换按钮在亮/暗之间改变状态时,我控制台记录父状态。父状态更新良好,但内联样式不变。指示子组件在加载页时被锁定为当前的任何状态。 这有什么原因吗? 我是新反应,所以很抱歉,如果这是一个愚蠢的问题! 家长 儿童
2)有没有另一种方法可以重写这个逻辑而不使用道具来设置状态? 父组件: 子组件
我有问题的反应形式和管理的状态适当。我在一个表单中有一个时间输入字段(在一个模态中)。初始值在中设置为状态变量,并从父组件传入。这本身就很好用。 当我想通过父组件更新默认的start_time值时,问题就来了。更新本身通过在父组件中发生。但是,在我的表单中,默认的start_time值从不更改,因为它只在中定义过一次。 我尝试使用通过强制更改状态,这确实起到了作用,但给了我错误。 所以我的问题是,
我试图了解如何构建具有不同"页面"或"视图"的ReactJS应用程序。 我将以下组件作为我的基础应用程序,并且我正在React状态中使用currentState属性在视图中的活动组件之间切换。 它执行此任务,但在启动dataLoaded回调时,组件从不接收更新的recipes数组。 如何根据应用程序中的更新状态更新道具? 还是我处理这整件事的方式错了?
问题内容: 我有以下基于渲染下拉列表呈现用户的类。如果我选择“字母”,则将按字母顺序列出用户;当我选择“组”时,将按组顺序列出用户。 在组件中,我正在通过props.members中的函数设置组件状态对象。 当我选择“组”排序时,组件正在卸载并且正在DOM中安装。同样,当我切换回“字母”排序时,在组件中预先设置的状态变量(成员)将变为NULL,因为该组件已从DOM中删除。 重新渲染b’coz时道具
我正在使用React-useState创建状态为的对象。在成功调用API后,将更新为数据对象。 我有一个表单可以更改此状态,但我还有一个取消按钮。单击“取消”时,如何将此状态恢复为其初始值(API调用后)? 我应该创建另一个状态变量和存储初始状态在那里,然后更新我的状态基于?