私はReactを初めて使用しており、ユーザーのテーブルを作成しようとしており、そのアクセス許可を管理するためにチェックボックスを使用したいと考えています。チェックボックスをクリックすると状態が更新される問題が発生しました。私が問題を抱えている場所はhandleChangeメソッドです。特定のユーザーの状態を変更するための正しいチェックボックスを特定する方法を知りません。私はそれぞれにid propを追加する必要があるかもしれないと思っているかもしれませんが、それは多数のユーザー、すなわちユーザーごとに1つのIDごとに1つのIDが不足するように思えるかもしれません。これは難しいことではないはずですが、私は長い間立ち往生しています。Reactでチェックボックスを使用して状態を管理する方法は?
私のコンポーネントコードは以下の通りです。
import React from 'react'
import {Link} from 'react-router'
import {Panel, Button, PageHeader, Row, Col, Table, Input} from 'react-bootstrap'
export class UserPermissions extends React.Component {
constructor() {
super();
this.state = {
users: [
{
name: 'Jerry',
viewAccounts: true,
modifyAccounts: true,
viewUsers: false,
modifyUsers: true
},
{
name: 'George',
viewAccounts: false,
modifyAccounts: true,
viewUsers: false,
modifyUsers: false
},
{
name: 'Elaine',
viewAccounts: true,
modifyAccounts: false,
viewUsers: false,
modifyUsers: true
}
]
}
}
handleChange(e){
//not sure how to write this
}
renderHeadings(data){
return data.map((step, index) => <th key={index} style={{align:"center"}}>{step}</th>);
}
renderRows(data){
return data.map((step, index) =>
<tr key={index}>
<td>{step['name']}</td>
<td style={{align:"center", paddingLeft:"40px"}}>
<Input type="checkbox"
checked={step['viewAccounts']}
onChange={this.handleChange}/></td>
<td style={{align:"center", paddingLeft:"40px"}}>
<Input type="checkbox"
checked={step['modifyAccounts']}
onChange={this.handleChange}/></td>
<td style={{align:"center", paddingLeft:"40px"}}>
<Input type="checkbox"
checked={step['viewUsers']}
onChange={this.handleChange}/></td>
<td style={{align:"center", paddingLeft:"40px"}}>
<Input type="checkbox"
checked={step['modifyUsers']}
onChange={this.handleChange} /></td>
<td style={{align:"center"}}>
<Link to="/users"><i className="fa fa-edit fa-2x fa-fw" /></Link>
<Link to="/users"><i className="fa fa-times-circle fa-2x fa-fw" /></Link></td>
</tr>
);
}
render() {
return (
<div>
<Row>
<Col lg={12}>
<PageHeader>User Permissions</PageHeader>
</Col>
<Col lg={12}>
<Panel header={<span>Users</span>} bsStyle="primary">
<div>
<div className="dataTable_wrapper">
<div id="dataTables-example_wrapper" className="dataTables_wrapper form-inline dt-bootstrap no-footer">
<Row>
<Col sm={12}>
<Table striped condensed responsive>
<thead>
<tr>
{this.renderHeadings(this.props.headings)}
</tr>
</thead>
<tbody>
{this.renderRows(this.state.users)}
</tbody>
</Table>
</Col>
</Row>
</div>
</div>
</div>
</Panel>
<Button bsStyle="success">Add User</Button>
</Col>
</Row>
</div>
);
}
}
UserPermissions.propTypes = {
headings: React.PropTypes.array
}
UserPermissions.defaultProps = {
headings: ['Name', 'View Accounts', 'Modify Accounts', 'View Users', 'Modify Users']
}
:おそらく、あなたもあなたのニーズのためにそれを使用することができ、 'this.handleChange(「modifyUsers」)'か、チェックボックスを識別するために、 'refs'を使用することができます。 –