个人解冻完成了。输入原始id就可以了,然后会指引你登陆手机解冻
微信小程序个人账号,长时间未使用已被冻结,怎么办?昨天收到微信的推送,说是微信小程序长时间未使用已被冻结了,我的是早期注册的个人小程序账号,想要重新使用此账号。 然后我按照以下流程找回账号,到第三步填写资料并验证身份,必须填写主体信息:企业名称、营业执照注册号、支付验证的流程等... 因为我的是自己的个人账号,没有这些信息呀,还请官方和大家能够给一个可以找回的途径,谢谢! [图片] [图片][图片] [图片]
2020-12-28http://192.168.137.1:80/hls/tmp2.m3u8 这是内网的。外网的还没开通
video播放hls?在小程序使用video组件时src设置hls的地址显示一片黑,但是将地址放在微信会话中可以访问并播放。由于是在内网测试,配的是ip地址。
2019-12-27你好 请问解决了吗 遇到了同样的问题
video组件播放m3u8视频 安卓无法播放?在video组件中设置src为hls协议地址,ios可以正常播放,Android无法播放。在Safari中输入hls协议地址经过重定向后得到m3u8地址后浏览器可以正常播放。若浏览器一直打开hls协议地址页面,将video组件src设置成浏览器重定向得到的m3u8地址,ios和Android都可以正常播放。若浏览器关闭hls协议地址页面,将video组件src设置成浏览器重定向得到的m3u8地址,ios和Android都无法播放。
2019-12-27你好 请问解决了吗 我也遇到同样问题
video组件无法播放m3u8视频?代码片段: https://developers.weixin.qq.com/s/DYA7GJmi7Sap 安卓的浏览器可以正常播放,但是在小程序里面无法播放 iso的浏览器无法正常播放,小程序也无法播放。
2019-12-27已经拆出来了
可以在onshow方法中手动调用onload方法吗?可以在onshow方法中手动调用onload方法吗?
2019-09-10pat = pat.replace(/\\/g ,'/'); var titlePath = pat.substring(pat.lastIndexOf('/') + 1); // wx.navigateTo({ // url: '../web_view/web_view?url=' + pat, // }) // wx.hideLoading(); wx.downloadFile({ url: pat, filePath: wx.env.USER_DATA_PATH + '/' + titlePath, success: function (res) { wx.hideLoading(); console.log(res) var Path = res.filePath; //返回的文件临时地址,用于后面打开本地预览所用 var imgtypes = ['bmp', 'jpg', 'png', 'gif', 'tif', 'fpx', 'svg', 'jpeg']; for (var idx in imgtypes) { if (Path.endsWith(imgtypes[idx])) { wx.previewImage({ urls: [Path], }) return; } } var fs = wx.getFileSystemManager(); console.log("重命名地址:", wx.env.USER_DATA_PATH) fs.rename({ oldPath: Path, newPath: wx.env.USER_DATA_PATH + '/' + titlePath, success: function(res){ console.log(res) wx.openDocument({ filePath: wx.env.USER_DATA_PATH + '/' + titlePath, success: function (res) { console.log('打开文档成功'); console.log(res); }, fail: function (res) { wx.showToast({ title: 'fail', icon: 'none' }) console.log('fail') console.log(res) }, complete: function (res) { console.log('complete') console.log(res) } }) }, fail:function(res){ console.log(res) wx.showToast({ title: '文件重命名失败', icon: 'none' }) } }); }, fail: function (res) { console.log(res); }, complete: function () { wx.hideLoading(); } });
ios系统中openDocument API调用成功但是打开文件无反应- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo ios系统中openDocument API调用成功但是打开文件无反应 wx.downloadFile({ url: path, success: function (res) { console.log(res) var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用 var imgtypes = ['bmp', 'jpg', 'png', 'gif', 'tif', 'fpx', 'svg', 'jpeg']; for (var idx in imgtypes) { if (Path.endsWith(imgtypes[idx])) { wx.previewImage({ urls: [Path], }) return; } } wx.openDocument({ filePath: Path, success: function (res) { console.log('打开成功'); }, fail: function (res) { console.log(res); } }) }, fail: function (res) { console.log(res); }, complete: function () { wx.hideLoading(); } });
2019-06-11