码迷,mamicode.com
首页 > 其他好文 > 详细

Cannot read property 'map' of undefined

时间:2020-07-10 16:49:16      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:def   异步   key   user   调用   color   src   classname   判断   

报错:Cannot read property ‘map‘ of undefine
  <ul className={styles.resul}>
            {
              this.state.isfalsepic.map((item) => {
                return (
                  <li className={styles.resli} key={item.id}>
                    <img
                      className={styles.resimg}
                      alt="example"
                      src={`${this.state.imgpath}media/${item.user_info_price}`}
                    />
                  </li>
                );
              })}
          </ul>

 

原因:调用map的对象是 undefined,初始化第一次渲染的时候异步数据返回之前list是undefined。


解决方法:对list作判断,异步ajax返回数据list取到值后再渲染组件。

 <ul className={styles.resul}>
            {this.state.isfalsepic &&
              this.state.isfalsepic.map((item) => {
                return (
                  <li className={styles.resli} key={item.id}>
                    <img
                      className={styles.resimg}
                      alt="example"
                      src={`${this.state.imgpath}media/${item.user_info_price}`}
                    />
                  </li>
                );
              })}
          </ul>

  

Cannot read property 'map' of undefined

标签:def   异步   key   user   调用   color   src   classname   判断   

原文地址:https://www.cnblogs.com/taxun/p/13279905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!