1
我必須建立一個動態下拉基於URL的菜單是REST API組件:陣營材料UI下拉菜單不起作用
組合組件代碼:
export default class Combo extends React.Component {
constructor(props) {
super(props)
this.state = {data: [], value: 0}
this.handleChange = this.handleChange.bind(this)
}
componentDidMount() {
// Fetch content
}
handleChange(event, index, value) {
this.setState({value: event.target.value});
}
render() {
return (
<MuiThemeProvider muiTheme={getMuiTheme()}>
<DropDownMenu style={styles.customWidth} onChange={this.handleChange}>
{this.state.data.map((row, i) => <ComboItem key={i} _id={row._id} label={row.name}/>)}
</DropDownMenu>
</MuiThemeProvider>
)
}
}
export class ComboItem extends React.Component {
render() {
return (
<MenuItem style={styles.customWidth} value={this.props._id} key={this.props._id} primaryText={this.props.label}/>
)
}
}
在我index.js
我已添加文件injectTapEventPlugin
。
最後它顯示輸出,但是當我點擊一個項目時,如果下拉到所選項目(如正常選擇框),它將不會更改該值。
注意:onChange
方法從未調用任何更改。
演示:
感謝您的回答。我添加了它,但仍然無效。當我選擇一個項目時,我的'onChange'狀態從不會被調用。 – Mortezaipo
我認爲另一個問題是'DropDownMenu'組件的孩子應該是'MenuItem'組件。 – DTing
非常感謝。它適用於'onTouchTap'選項。 – Mortezaipo