美文网首页
JS 巧用map 和 join 生成字符串

JS 巧用map 和 join 生成字符串

作者: Axiba | 来源:发表于2016-11-20 18:45 被阅读304次

    一般我们通过数组去得到该数组以指定格式合成后的字符串,可以通过:

    arr1.join(',');
    

    但是有时候我们拿到的数据对象不仅仅是一维数组,里面会带有object,这个使用我们可以利用map来生成对应的字符串对象:

    //先看ES6语法的,很简单,deptName是数组中某一个字段的值
    selectDepartData.map(e => e. deptName).join(',');
    
    //ES5
    selectDepartData.map(function(e) { return e.deptName;}).join(',');
    

    相关文章

      网友评论

          本文标题:JS 巧用map 和 join 生成字符串

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