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