你想由数组创建一个字符串。
使用 JavaScript 的数组方法 toString():
["one", "two", "three"].toString() # => 'one,two,three'
toString() 是一个标准的 JavaScript 方法。不要忘记圆括号。