我正在尝试加载不同按钮的Modals onClick的不同内容。
答案 0 :(得分:0)
下面是将参数发送给React成员函数的代码
onClick = {(e) => this.showModel(e , newContent) }
如果您共享代码,可以详细说明
谢谢
答案 1 :(得分:0)
{["first","second"].map(option => {
return (
<Button
size="small"
color="secondary"
variant="raised"
onClick={this.handleClickOpen}
>
{option}
</Button>
);
})}
<Dialog
open={this.state.open}
onClose={this.handleClose}
>
<DialogTitle id="alert-dialog-title">
{"Use Google's location service?"}
</DialogTitle>
<DialogContent>
<DialogContentText id="alert-dialog-description">
hello /here must be different names/
</DialogContentText>
</DialogContent>
</Dialog>