如何解决IE11中的vues.js和axios问题?

时间:2018-10-16 07:47:11

标签: vue.js

我对此代码有疑问:

 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修改了一些代码,但问题太多了

感谢您的帮助

0 个答案:

没有答案