使用PasteHtml方法合并文档,合并的图片报错404错误

阅读次数 1

当前使用PasteHtml方法将其他文档的内容合并至该文档中,待合并文档的文字正常,图片会报错404错误,请问这是什么问题,需要如何解决? 这是合并文档的代码:

	  // 导入图片的word文档
      this.insertInstance = WebOfficeSDK.init({
        officeType: 'w',
        appId: 'SX20240628SVYFAC',
        fileId,
        token: fileToken,
        mount: document.querySelector('#previewWpsHTML')
      })
      await this.insertInstance.ready()
      this.insertApp = this.insertInstance.Application
      setTimeout(async () => {
        const insertDocumentRange = await this.insertApp.ActiveDocument.GetDocumentRange()
        const insertHtmlData = await insertDocumentRange.GetHtmlData()
        const insertHTML = insertHtmlData.HTML
        await this.app.ActiveDocument.Range(
          this.selectBegin,
          this.selectEnd
        ).PasteHtml({ HTML: insertHTML })
        this.sendLoading = false
        this.componentVisible = false
        this.visible = false
      }, 3000)

这是报错图片: image.png 这是404链接的详细内容: image.png

0 Answers