const list = [{type: "string", value: "字符串一"}, {type: "string", value: "字符串二"}, {type: "string", value: "字符串三"}]
const newList = []
list.forEach(arg => {
  newList.push(arg.value)
})

const str = newList.join(",")
console.log(str)   // 字符串一,字符串二,字符串三

相关文章:

  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2021-12-20
  • 2022-02-25
  • 2021-08-09
  • 2022-12-23
  • 2021-10-27
猜你喜欢
  • 2022-12-23
  • 2021-07-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-07
相关资源
相似解决方案