gpt4 book ai didi

javascript - ReactJS 将数据传递给呈现的模态?

转载 作者:行者123 更新时间:2023-11-30 11:40:54 26 4
gpt4 key购买 nike

我不确定这是否可行,也许我做错了什么。

我有一个循环,将一些进度条元素插入数组,然后用信息呈现它。

点击不同的进度条将输出传递到该特定进度条的数据,但这会显示在控制台上。

我不想在控制台上输出它,而是希望在 <Modal> 中弹出该信息动态地。

因此,如果用户单击进度条 1,则在进度条 1 中传递的信息将显示在 <Modal> 中。 .

如果我把 open<Modal> 中发挥作用我收到一条错误消息:“无法在现有状态转换期间更新(例如在 render 内)。渲染方法应该是 props 和状态的纯函数。”

输出照片 enter image description here这是我的代码:

var React = require('react');
var Modal = require('react-overlays/lib/Modal');

var TableResults = React.createClass({

close(){
this.setState({ showModal: false });
},
open: function(system, value, name, individualValues){
this.setState({ showModal: true });
console.log(system);
console.log("Story: " + name);
console.log("Value:" + individualValues);
console.log("Total Output: " + value);
console.log("=============================================");
},


render: function(){
loop with logic and calculations{

bodyRows[cellIndex].push(
<td id="tableBody">
<div className="progress" role="progressbar" id="progressBarStyle"
onClick={this.open.bind(null, "System2", systemValues[0], name[0], individualSysValueOutput[0])}>
<div className="progress-meter" data-values={this.calculatePercent(systemValues[0])}>
{(Math.round(this.calculatePercent(systemValues[0]) * 100) / 100) + '%'}
</div>
</div>
</td>
)
}


return(
<div>
<Modal
aria-labelledby='modal-label'
style={modalStyle}
backdropStyle={backdropStyle}
show={this.state.showModal}
onHide={this.close}
keyboard={true}
>
<div style={dialogStyle()}>
<table>
<thead>
<tr>
<th>Head</th>
</tr>
</thead>
<tbody>
<tr>
<td>BodyRow</td>
</tr>
<tr>
{/* <td>{this.open()}</td> */}
</tr>
</tbody>
</table>
</div>
</Modal>


<div className="dataTable" >
<table className="hover">
<tbody>
<tr>
{/* Progress bar will be rendered here */}
{bodyRows[0]}
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
</div>
)
});
module.exports = TableResults;

最佳答案

首先,当将组件上下文用作事件处理程序时,您应该将组件上下文绑定(bind)到 open 方法(使用 this insetad of null 作为第一个绑定(bind)参数):

onClick={this.open.bind(this, "System2", systemValues[0], name[0], individualSysValueOutput[0])}

那么你应该将点击进度对应的数据存储在state中:

open: function(system, value, name, individualValues){
this.setState({ showModal: true,
system,
value,
name,
individualValues
});
}

现在您可以像这样在模态中使用状态数据:

 <Modal
aria-labelledby='modal-label'
style={modalStyle}
backdropStyle={backdropStyle}
show={this.state.showModal}
onHide={this.close}
keyboard={true}
>
<div style={dialogStyle()}>
<table>
<thead>
<tr>
<th>Head</th>
</tr>
</thead>
<tbody>
<tr>
<td>BodyRow</td>
</tr>
<tr>
<td>{this.state.value}</td>
</tr>
</tbody>
</table>
</div>
</Modal>

关于javascript - ReactJS 将数据传递给呈现的模态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42724464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com