小程序
小游戏
企业微信
微信支付
扫描小程序码分享
RT,比如说定义filetype是pdf就只能打开pdf,能不能同时定义pdf和doc,让两个都能打开?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
自己判断控制啊 var file = 'xxxxxxxx.xxx' var alls = {doc:0, docx:0, xls:0, xlsx:0, ppt:0, pptx:0, pdf:0}, allows = { xlsx: 0, pdf:0 }, ext = file.split('.').pop() if( !(ext in alls)) { wx.showToast({ title: '不支持打开'+ext+'文件', icon:'none' }) }else if( !(ext in allows)){ var str = Object.keys(allows).join(',') wx.showToast({ title: '只允许打开'+str+'文件', icon:'none' }) }else{ wx.openDocument({ filePath: file, fileType: ext, success: function (res) { console.log('打开文档成功') }, fail: (res) => {console.log(res)}, }) }
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
自己判断控制啊 var file = 'xxxxxxxx.xxx' var alls = {doc:0, docx:0, xls:0, xlsx:0, ppt:0, pptx:0, pdf:0}, allows = { xlsx: 0, pdf:0 }, ext = file.split('.').pop() if( !(ext in alls)) { wx.showToast({ title: '不支持打开'+ext+'文件', icon:'none' }) }else if( !(ext in allows)){ var str = Object.keys(allows).join(',') wx.showToast({ title: '只允许打开'+str+'文件', icon:'none' }) }else{ wx.openDocument({ filePath: file, fileType: ext, success: function (res) { console.log('打开文档成功') }, fail: (res) => {console.log(res)}, }) }
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
console.log('测试:', res)