美文网首页
js 数组遍历拼接人名

js 数组遍历拼接人名

作者: Spidd | 来源:发表于2021-11-19 11:27 被阅读0次
    {
              dot.get(detail, 'role_type_list', []).length > 0
                ? dot.get(detail, 'role_type_list', []).reduce((acc, cur, idx) => {
                  if (idx === 0) return RoleType.description(cur);
                  return `${acc}、${RoleType.description(cur)}`;
                }, '')
                : '--'
            }
    

    相关文章

      网友评论

          本文标题:js 数组遍历拼接人名

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