美文网首页前端数据处理
es6 解构赋值取别名

es6 解构赋值取别名

作者: 逸笛 | 来源:发表于2020-01-20 11:45 被阅读0次

    当解构时,发现变量重名了,可设置别名区分

       const {
      
          product: {
            data: { list: productList = [] },
          },
          bulletin: {
            data: { list: bulletinList = [] },
          },
          article: {
            data: { list: articleList = [] },
          }
        } = this.props;
    

    相关文章

      网友评论

        本文标题:es6 解构赋值取别名

        本文链接:https://www.haomeiwen.com/subject/sfsgactx.html