小王子888
小王子888
  • 发布:2019-06-21 16:24
  • 更新:2019-12-19 14:32
  • 阅读:1396

uni.sendWithSystem分享图片不显示

分类:HBuilderX

uni.sendWithSystem分享图片不显示,代码如下:

            let temppath = '';  
            uni.downloadFile({  
                url:'https://vgcenterpic.oss-cn-beijing.aliyuncs.com/pic/K1561031393476.jpg',  
                success: function (res) {  
                    if (res.statusCode === 200) {  
                        temppath = res.tempFilePath;  
                    }  
                }  
            })  
            // #ifdef APP-PLUS  
            plus.share.sendWithSystem({  
                pictures:temppath,  
                type:'image'  
            })  
            // #endif
2019-06-21 16:24 负责人:无 分享
已邀请:
h***@163.com

h***@163.com

uni.downloadFile({    
    url:url,    
    success: function (res) {    
    if (res.statusCode === 200) {    
    // temppath = res.tempFilePath;    
    plus.share.sendWithSystem({  
        pictures:[res.tempFilePath],    
            type:'image'    
    })    
    }    
}    
})  

pictures需要传入的是path数组,你传入的是path

水手

水手 - 资深老开发

传入path 数组 也是 这个样子,
怎么解决?

该问题目前已经被锁定, 无法添加新回复