小程序
小游戏
企业微信
微信支付
扫描小程序码分享
第二步:将图片转换为byte 类型;
第三步:利用腾讯云接口上传到腾讯云服务器。
问题:在unity 引擎端测试,上传下载均成功。在执行第三部操作时候,在微信开发者工具和手机微信端,都会导致游戏卡死。微信小游戏不支持上传照片到云端吗?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
//获取图片的接口调用
WX.ChooseMedia(new ChooseMediaOption()
{
count =1,
sizeType = new string[] { "compressed" },
sourceType = new string[] { "album" },
mediaType = new string[] { "image" },
fail = (msg) => {
Debug.LogError($"open failed: {msg.errMsg}"); },
success = (msg) => {
if (msg!=null)
if (msg.tempFiles.Length > 0)
onSelect?.Invoke(PicPathResult.Success, msg.tempFiles[0].tempFilePath);
}
Debug.LogError($"open success: {msg.errMsg}");
},
});
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
//获取图片的接口调用
WX.ChooseMedia(new ChooseMediaOption()
{
count =1,
sizeType = new string[] { "compressed" },
sourceType = new string[] { "album" },
mediaType = new string[] { "image" },
fail = (msg) => {
Debug.LogError($"open failed: {msg.errMsg}"); },
success = (msg) => {
if (msg!=null)
{
if (msg.tempFiles.Length > 0)
{
onSelect?.Invoke(PicPathResult.Success, msg.tempFiles[0].tempFilePath);
}
Debug.LogError($"open success: {msg.errMsg}");
}
},
});