我本质上是在尝试做出回应,但是有一些问题。
这是档案 page.jsx
<RadioGroup>
<Button title="A" />
<Button title="B" />
</RadioGroup>
当你点击按钮A,在RadioGroup中组件需要去选择按钮B 。
“选定”仅表示来自状态或属性的className
这里是RadioGroup.jsx
:
module.exports = React.createClass({
onChange: function( e ) {
// How to modify children properties here???
},
render: function() {
return (<div onChange={this.onChange}>
{this.props.children}
</div>);
}
});
的来源Button.jsx
并不重要,它具有触发原始DOM onChange
事件的常规HTML单选按钮
预期流量为:
这是我遇到的主要问题:我 无法<Button>
进入RadioGroup
,因为它的结构使得子级是 任意的 。也就是说,标记可能是
<RadioGroup>
<Button title="A" />
<Button title="B" />
</RadioGroup>
要么
<RadioGroup>
<OtherThing title="A" />
<OtherThing title="B" />
</RadioGroup>
我已经尝试了几件事。
尝试: 在RadioGroup
的onChange处理程序中:
React.Children.forEach( this.props.children, function( child ) {
// Set the selected state of each child to be if the underlying <input>
// value matches the child's value
child.setState({ selected: child.props.value === e.target.value });
});
问题:
Invalid access to component property "setState" on exports at the top
level. See react-warning-descriptors . Use a static method
instead: <exports />.type.setState(...)
尝试: 在RadioGroup
的onChange处理程序中:
React.Children.forEach( this.props.children, function( child ) {
child.props.selected = child.props.value === e.target.value;
});
问题: 什么都没发生,即使我给Button
全班提供了一种componentWillReceiveProps
方法
尝试: 我试图将父母的某些特定状态传递给孩子,因此我可以更新父母状态并使孩子自动响应。在RadioGroup的渲染功能中:
React.Children.forEach( this.props.children, function( item ) {
this.transferPropsTo( item );
}, this);
问题:
Failed to make request: Error: Invariant Violation: exports: You can't call
transferPropsTo() on a component that you don't own, exports. This usually
means you are calling transferPropsTo() on a component passed in as props
or children.
错误的解决方案#1 :使用react-addons.js
cloneWithProps方法在渲染时克隆子代,RadioGroup
以便能够传递它们的属性
错误的解决方案2 :在HTML / JSX周围实现抽象,以便我可以动态传递属性(杀死我):
<RadioGroup items=[
{ type: Button, title: 'A' },
{ type: Button, title: 'B' }
]; />
然后在RadioGroup
动态建立这些按钮。
这个问题对我没有帮助,因为我需要渲染我的孩子而不知道他们是什么
我不确定为什么您说使用cloneWithProps
是一个不好的解决方案,但是这里是一个使用它的有效示例。
var Hello = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
var App = React.createClass({
render: function() {
return (
<Group ref="buttonGroup">
<Button key={1} name="Component A"/>
<Button key={2} name="Component B"/>
<Button key={3} name="Component C"/>
</Group>
);
}
});
var Group = React.createClass({
getInitialState: function() {
return {
selectedItem: null
};
},
selectItem: function(item) {
this.setState({
selectedItem: item
});
},
render: function() {
var selectedKey = (this.state.selectedItem && this.state.selectedItem.props.key) || null;
var children = this.props.children.map(function(item, i) {
var isSelected = item.props.key === selectedKey;
return React.addons.cloneWithProps(item, {
isSelected: isSelected,
selectItem: this.selectItem,
key: item.props.key
});
}, this);
return (
<div>
<strong>Selected:</strong> {this.state.selectedItem ? this.state.selectedItem.props.name : 'None'}
<hr/>
{children}
</div>
);
}
});
var Button = React.createClass({
handleClick: function() {
this.props.selectItem(this);
},
render: function() {
var selected = this.props.isSelected;
return (
<div
onClick={this.handleClick}
className={selected ? "selected" : ""}
>
{this.props.name} ({this.props.key}) {selected ? "<---" : ""}
</div>
);
}
});
React.renderComponent(<App />, document.body);
这是一个jsFiddle演示它的运行情况。
编辑
:这是带有动态标签内容的更完整示例:jsFiddle
以下是: code>button.jsx的来源并不重要,它有一个常规的HTML单选按钮,触发本机DOM事件 预期流量为: null 尝试:在的onChange处理程序中: 问题: 尝试:在的onChange处理程序中:
我正在尝试制作一个很好的ApiWrapper组件来填充各种子组件中的数据。从我读到的所有内容来看,这应该是可行的:https://jsfidle.net/vinniejames/m1mesp6z/1/ 但由于某种原因,当父状态更改时,子组件似乎没有更新。 我是不是漏了什么?
index.js Button.js 我的问题是“如何从Button.js到index.js获取标志值”?(儿童对父母)。
我的反应结构是 在中有一个按钮,单击该按钮可通过家长向其兄弟姐妹发送消息。第一个孩子- 应用程序 选择研究 参与者表-这需要接收某个变量,例如在其状态中的
我有两个组件:父组件,我想改变子组件的状态: 和子组件: 我需要从父组件更改子组件的打开状态,或者当单击父组件中的按钮时,从父组件调用子组件的toggleMenu()?
我试图在父组件中显示子组件的状态,但不知何故,文本“abcde”仍然没有显示,这是示例代码 但不知怎么的,屏幕仍然是空的,“abcde”直到我点击两次,来自功能组件,所以我不知道发生了什么,请帮助,非常感谢