VUE 过滤掉JSON数据中不想要的数据

var quest = this.doctorsInDept.filter(item=> item.id != this.replaceForm.doctorId);

this.doctorsInDept是JSON数据

 this.replaceForm.doctorId我想过滤掉这个数据

过滤前


过滤后


你可能感兴趣的:(VUE 过滤掉JSON数据中不想要的数据)