vue项目在线浏览word文件

在线浏览word文件

// 微软浏览文件官方前缀
let base = 'http://www.xdocin.com/xdoc?_func=to&_format=html&_cache=1&_xdoc='
// fileUrl自己word文档存储的线上地址
let fileUrl = '线上文件地址'
let url = encodeURIComponent(fileUrl)
window.open(base + url, '_blank')

你可能感兴趣的:(前端)