相关文章推荐
近视的桔子  ·  机器学习| ...·  5 月前    · 
读研的酱肘子  ·  Adding Meta-qt5 to ...·  1 年前    · 

react 字符串转数组

可以使用 JavaScript split() 方法将字符串分割为数组。例如:

const str = "a,b,c,d";
const arr = str.split(",");
console.log(arr);
// Output: [ "a", "b", "c", "d" ]
  •