我在React JS中呈现表数据,在单击子项时无法隐藏我的表行"删除";按钮我当前的处理程序和呈现函数如下:
...
changeHandler: function(e) {
...
},
deleteHandler: function(e) {
e.currentTarget.closest("tr").style.visibility = "hidden";
},
render: function() {
return (
<div>
<div class="container">
<select onChange={ this.changeHandler.bind(this) }>
<option></option>
...
</select>
<table>
<thead>
<tr>
...
</tr>
</thead>
<tbody>
{data.map(function(row, j) {
return <tr key={j}>
<td>{row.text}</td>
<td><a href="" onClick={this.deleteHandler.bind(this, j)}>delete</a></td>
</tr>
}
)}
</tbody>
</table>
</div>
</div>
);
}
...
当我点击删除锚点时,我在控制台中收到以下错误:
未捕获的类型错误:无法读取未定义的属性"bind"
我不明白为什么我的删除处理程序没有被识别和绑定,而我正在使用的changeHandler
是。有人能告诉我如何让这个事件到达处理程序,以及如何针对父tr隐藏它吗?
在更正了上面的拼写错误后,我发现这不是错误。看看下面的小提琴,看看它在演奏。当您隐藏行时,将需要一些样式更改。
https://jsfiddle.net/vgo52rey/
问题在于fiddle中filter函数中的"this"绑定。将其抽象到另一个方法中,以便您可以将对此的引用存储在不同的变量中,然后您可以保留对this.delete或this.deleteHandler的引用。
delete: function(e) {
e.currentTarget.closest("tr").style.visibility = "hidden";
},
renderRows: function() {
var shouldIRender =(row) => (this.state.filter === row.status || this.state.filter === "");
var self = this
return requests.filter(shouldIRender).map(function(row, j) {
return <tr key={j}>
<td style={tdStyle}>{row.title}</td>
<td style={tdStyle}>{row.status}</td>
<td style={tdStyle}>{row.created_at}</td>
<td style={tdStyle}>{row.updated_at}</td>
<td style={tdStyle}><a href="#" onClick={self.delete}>delete</a></td>
</tr>
}
)
},
在您的渲染方法中,现在您只需提供renderRows方法的返回值:
<tbody>
{this.renderRows()}
</tbody>