You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
application/vnd.openxmlformats-officedocument.wordprocessingml.document这个格式是docx的吧,pptx的格式是application/vnd.openxmlformats-officedocument.presentationml.presentation,看下是不是这个问题导致的。常见的MIME类型列表有:MDN Common MIME types
在使用pptx 预览的时候,出现这个错误,但是word 就正常显示
接口返回的二进制文件流 pptx 无法显示 ,怎么解决呢 我的代码如下
const initPPt = async(RowfilePath:any)=>{
const response = await getFile(RowfilePath);
const blob = new Blob([response], { type: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' })
if (refPPt?.current) {
}
The text was updated successfully, but these errors were encountered: