数组去重复 电脑版发表于:2020/4/15 16:37 直接使用indexof查找到不存在再加就行了Datas:string[]=[];//定义一个数组if(this.Datas.indexOf("bb")<0) { this.Datas.push("bb"); }