vue.js实现数组转字符串的方法:【var authority= ['1','2'];let permission = authority.join(",");console.log(permission )】。
本文操作环境:windows10系统、vue.js 2.9、thinkpad t480电脑。
vue.js实现数组与字符串之间的相互转换,具体代码如下所示:
数组转字符串
var authority= ['1','2'];
let permission = authority.join(",");
console.log(permission )//1,2
字符串转数组
var a='1,2'
a.split(',')
console.log(a)// ["1", "2"]
以上就是vue.js怎么实现数组转字符串的详细内容,转载自php中文网
发表评论 取消回复