Cannot read property 'handleClick' of undefined when using map

匿名 (未验证) 提交于 2019-12-03 02:33:02

问题:

I am trying to make a table row function like a Link with react-router.

I keep getting the error Cannot read property 'handleClick' of undefined

handleClick(user) {    this.router.transitionTo('index', user); }  render(){    var userNodes = this.props.posts.map(function(user, i){        return (          <tr onClick={() => this.handleClick(user)}>            <Td>{user.postId}</Td>            <Td>{user.title}</Td>            <Td>{user.body}</Td>             </tr>        )    }); ... 

回答1:

Use arrow function as map callback to preserve component context (otherwise this inside the callback will not point to the component instance):

render(){    var userNodes = this.props.posts.map((user, i) => {        return (          <tr onClick={() => this.handleClick(user)}>            <Td>{user.postId}</Td>            <Td>{user.title}</Td>            <Td>{user.body}</Td>             </tr>        )    }); 


回答2:

You have to bind it.

var userNodes = this.props.posts.map(function(user, i){}.bind(this)); 


回答3:

Its a binding issue, you need to bind the context otherwise this will not point to the react component. Either use .bind(this) with function or use arrow function to avoid this kind of problem. Use this:

render(){    var userNodes = this.props.posts.map(function(user, i){        return (          <tr onClick={() => this.handleClick(user)}>            <Td>{user.postId}</Td>            <Td>{user.title}</Td>            <Td>{user.body}</Td>             </tr>        )    }.bind(this)); 

Or this:

render(){    var userNodes = this.props.posts.map((user, i) => {        return (          <tr onClick={() => this.handleClick(user)}>            <Td>{user.postId}</Td>            <Td>{user.title}</Td>            <Td>{user.body}</Td>             </tr>        )    }); 

Check the working example:

class App extends React.Component{    handleClick(user){     console.log(user);   }    render(){    var data = [0,1,2,3,4].map((user, i) => {        return (          <tr onClick={() => this.handleClick(user)}>            <td>{user}</td>            <td>{user}</td>            <td>{user}</td>             </tr>        )    });        return(       <table>          <thead>             <th>A</th>             <th>B</th>             <th>C</th>          </thead>          <tbody>             {data}          </tbody>       </table>    )   } }  ReactDOM.render(<App/>, document.getElementById('app'))
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>  <div id='app'/>


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!