this.result数据是后端传过来的数据,主要通过match,得到整个数组
for(let i=0;i<this.result.length;i++){
if((this.result[i].cityName.match(this.keywordt))!=null)
{
console.log(this.result[i].cityName.match(this.keywordt))
arr.push(this.result[i])
} }
this.result数据是后端传过来的数据,主要通过match,得到整个数组
for(let i=0;i<this.result.length;i++){
if((this.result[i].cityName.match(this.keywordt))!=null)
{
console.log(this.result[i].cityName.match(this.keywordt))
arr.push(this.result[i])
} }