鍍金池/ 問答/HTML5  HTML/ 在ie11上修改vue的路由參數(shù)有時(shí)會報(bào)錯。

在ie11上修改vue的路由參數(shù)有時(shí)會報(bào)錯。

test(option) {
    let route = this.$route;
    let query = this._.cloneDeep(route.query);
    
    for (let key in option) {
        query[key] = option[key];
    }
    
    this.$router.push({path: route.path, query: query});
}

在其他瀏覽器上運(yùn)行沒有問題,在ie上運(yùn)行數(shù)次后會出現(xiàn)以下報(bào)錯:

clipboard.png

不知道是什么問題引起的,求大神指點(diǎn)

回答
編輯回答
尛憇藌

這是 localhost 訪問吧
ie的安全級別過高
工具--internet選項(xiàng)--安全--自定義級別--其它--通過域訪問數(shù)據(jù)源
生產(chǎn)環(huán)境應(yīng)該沒事

2017年10月19日 16:29