在对接过程中发现simple
模式下出现iframe
跨域问题,另外在nomal
模式下隐藏顶部区域(头部和工具栏)同样会出现跨域问题,配置如下:
# simple模式
const jssdk = WebOfficeSDK.init({
officeType: WebOfficeSDK.OfficeType.Presentation,
appId: 'xxxxx',
fileId: 'xxxxx',
mode: 'simple'
})
# 或者
# nomal模式
const jssdk = WebOfficeSDK.init({
officeType: WebOfficeSDK.OfficeType.Presentation,
appId: 'xxxxx',
fileId: 'xxxxx',
// 通用选项,所有类型文档适用
commonOptions: {
isShowTopArea: false, // 隐藏顶部区域(头部和工具栏)
}
})
浏览器控制提示:
跨域问题导致WebOfficeSDK.ready()
执行失败,无法正常使用WebOfficeSDK
接口