Error: Loading CSS chunk 901 failed.复现代码

阅读次数 5

image.pngimage.png 点击编辑跳转在线编辑详情页面 有时正常显示 有时报错

mounted () {
    this.webOfficeInit()
  },
  methods: {
    async webOfficeInit () {
      this.loading = true
      this.app = this.WebOfficeSDK.init({
        officeType: this.$route.query.fileType == 'xlsx' ? this.WebOfficeSDK.OfficeType.Spreadsheet : this.WebOfficeSDK.OfficeType.Writer,
        appId: 'SX20240705PSXDRA',
        mount: '#viewFile',
        fileId: this.$route.query.id,
        token: 'Bearer ' + getToken()
      })
      await this.app.ready()
      const app = this.app.Application
      // // 页面定制对象:更多菜单
      const moreMenus = await app.CommandBars('MoreMenus')

      // 控制更多菜单隐藏
      moreMenus.Visible = false
      this.loading = false
    },

在线编辑详情页面代码

1 Answers

您好,无法复现您的问题,刚刚提供的线上可复现地址我这里访问不了。

谷歌浏览器 我加了 关闭 同源策略 --args --disable-web-security 好像就会出现该问题