- 华为手机打开web-view显示空白,但是其他手机正常显示了,配置都是正确的?
手机:[图片] 微信版本:[图片] web-view链接:https://newsystem.laway.cn/panlong/#/customer/saohei 已在oppo、iphonex,iphone6、小米上测试,都能够正常显示,但是华为不能
2020-06-15 - 保存图片到相册时报类型不存在的错:fail inval file type?
原因是在调用wx.downloadFile时返回的tempFilepath文件路径的后缀为unknown,导致传给saveFile的路径也没有后缀,所以真机上保存图片失败 [图片] 以下是我封装的代码: import { BASE_URL } from '@/libs/config' let url = '' export default function downLoad (fileId) { url = `${BASE_URL}/file/download/${fileId}` getSet() } function getSet () { uni.getSetting({ success: (res) => { if (res.authSetting['scope.writePhotosAlbum']) { // uni.downloadFile uni.downloadFile({ url: url, header: { 'Content-Type': 'png/jpeg' }, success: (infos) => { console.log('[get download file]', infos) saveFile(infos.tempFilePath) }, fail: () => { saveFail() } }) } else { author() } }, fail: () => { saveFail() } }) } function author () { uni.authorize({ scope: 'scope.writePhotosAlbum', success: (res) => { getSet() }, fail: () => { saveFail() } }) } function saveFile (path) { uni.saveImageToPhotosAlbum({ filePath: path, success: (res) => { uni.showToast('保存图片到相册成功') console.log('[download file success]', res) }, fail: (err) => { console.log('[got error when save file]', err) if (err.errMsg === "saveImageToPhotosAlbum:fail auth deny") { getSet() } else { saveFail() } }
2019-12-24 - 如何配置穿透头部导航?
[图片] 我有这样一个需求,需要背景图片穿透头部导航栏,请我我应该如何配置,或者如何实现
2019-12-20 - 小程序:开发者工具出现两个头部,重启开发者工具仍然存在不变
(开发版: 1.02.1912052)开发者工具出现两个头部,重启开发者工具仍然存在不变 [图片]
2019-12-06