vue首次加载正常,切换页面回来数据加载不成功

https://img1.mukewang.com/5ce0ff10000153c505100188.jpg

然后点其他页面(单页面)
再点回来,如下图,加载失败,没有得到参数
https://img.mukewang.com/5ce0ff130001a26d06300107.jpg

,控制台报错如下

https://img2.mukewang.com/5ce0ff150001f8fe06590313.jpg

,代码如下:

https://img2.mukewang.com/5ce0ff170001a79208000378.jpg

async mounted() {

            await Utils.$script.load('http://117.90.11.61:8080/ZIPindoor/js/jquery.js')

            await Utils.$script.load('https://indoormap.poi.igeekee.cn/map.js')

            await Utils.$script.load('http://117.09.11.61:8080/ZIPWeb/ZIPWebURL?param=web')

            this.renderMap()


        },

        methods: {

            ...mapActions([

                'getMapShape'

            ]),

            

            async renderMap(){ // 地图传值和方法调用

                this.params= this.applicationForm.poi

                let res = await this.getMapShape({'bu':this.params.buName,'mapVersion':this.params.mapVersion})

                this.mapData = res[0]

                this.load(this.floor)

                this.initFloorSel()    

                this.init = false

            },

            ......

}


海绵宝宝撒
浏览 1345回答 1
1回答

慕田峪9158850

你的报错状态码是 401状态码 401 Unauthorized 代表客户端错误,指的是由于缺乏目标资源要求的身份验证凭证,发送的请求未得到满足。可能是登录掉线了吧
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js