我对此代码有疑问:
mounted: function(){
axios.get(this.path+'15').then(response === {this.annonces = response.data})
},
computed:{
annoncesFiltrees(){
annonces = this.annonces;
if (this.etat.length){
annonces = annonces.filter(annonce === this.etat.includes(annonce[0]["etat"]))
}
if(this.filtresProduit.length){
annonces = annonces.filter(annonce === this.filtresProduit.includes(annonce[0]["filtre"]['id']))
}
if(this.filtresTechniquesRadio.length){
annonces = annonces.filter(function(annonce){
var filtrage = false;
annonce[0].caracteristiques.forEach(function(c){
if(this.app.filtresTechniquesRadio.includes(c.caracteristique.id)){
if(c.choix){
filtrage= true;
}
}
});
return filtrage;
})
}
问题仅出现在IE11上:
SCRIPT1003:':'参加
在此行(开始):
axios.get(this.path+'15').then(response === {this.annonces = response.data})
我为IE修改了一些代码,但问题太多了
感谢您的帮助