为什么使用wx.openDocument在PC端的微信打开小程序里面调用打开Excel文件无法编辑?
打开的Excel文件只能预览,无法像以前那个编辑保存等操作。是微信版本问题,还是程序问题 onBtn_EXCEL_preview(e){ console.log(e) const orderID = e.detail const URL = this.data.shareExcelURL; wx.openDocument({ filePath: URL, fileType:'xlsx', showMenu:true, success: function (res) { console.log('打开文档成功') } }) },