- web-view引入h5页面问题
在开发工具中可以看到web-view引用得html页面,但是手机预览的时候就只看到空白页,请问各位大佬怎么解决
2018-07-31 - 小程序web-view无法打开,显示白屏
- 当前 Bug 的表现(可附上截图) 小程序体验版打不开,一直显示白屏;业务域名都设置了还是不行,但是在开发工具上就能打开,很奇怪? [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo <web-view src="https://carmat.huizesoft.net/WXManage/WeiXinHome/Index"></web-view>
2018-07-31 - web-view Url 中文乱码
web-view 组件内嵌H5页面 A,有个页面跳转,跳转到B页面时url参数中有中文字符 形如:name=哈哈哈 然后在B页面拿到的这个参数就是乱码,显示为'??',试过了 encodeURIComponent 都没用,在浏览器直接打开页面或者在微信扫码访问跳转都是正常的,就是在小程序的web-view中不行,始终乱码。 大神求解,这是个什么坑啊........
2018-07-06 - web-view组件如何查看日志
如何查看web-view组建的log 现在知道是报错了 不知道是哪儿报错。。。 急急急 坐等大佬
2018-07-27 - wx.miniProgram.postMessage怎么在小程序接收数据?
小程序web-view一个网页,网页加载JSSDK 1.3.2已经写了wx.miniProgram.postMessage,怎么在小程序index.js中获取?
2018-01-29 - wx.miniProgram.navigateTo无响应
使用wx.miniProgram.navigateTo从web-view里面的网页打开小程序的一个页面/pages/locat/locat时没有响应。在开发工具上能正常跳转的,但是在真机上就没有响应了。请求指导帮助! 网页: <script src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js" charset="utf-8"></script> <script> $(".dizhi_img").on("click",function () { var mappoint = $(this).attr("data-mappoint").split(","); var latitude = mappoint[1]; var longitude = mappoint[0]; var url = '/pages/location/location?latitude='+encodeURIComponent(latitude)+'&longitude='+encodeURIComponent(longitude)+ '&name='+encodeURIComponent($(this).attr("data-name"))+'&address='+encodeURIComponent($(this).attr("data-address")); wx.miniProgram.navigateTo({ url:url, success: function(){ console.log('success') }, fail: function(){ console.log('fail'); }, complete:function(){ console.log('complete'); } }); }); </script> 小程序: new Promise((resolve, reject) => { // 位置授权 wx.getSetting({ success(res) { if (!res.authSetting['scope.userLocation']) { wx.authorize({ scope: 'scope.userLocation', success(){ // 用户已经同意位置权限 resolve(true); }, fail(){ resolve(false); } }); } else { //用户原来已经授予过权限 resolve(true); } }, fail() { resolve(false); } }); // resolve(localtiontag); }).then((relc) => { console.log(relc); if(relc == true){ wx.getLocation({//获取当前经纬度 type: 'wgs84', //返回可以用于wx.openLocation的经纬度 success: function (res) { wx.openLocation({//使用微信内置地图查看位置。 latitude: parseFloat(decodeURIComponent(options.latitude)),//要去的纬度-地址 longitude: parseFloat(decodeURIComponent(options.longitude)),//要去的经度-地址 name: decodeURIComponent(options.name), address: decodeURIComponent(options.address) }); } }); }else{ wx.navigateBack({ changed: true }); } });
2018-07-19 - 希望开放IM组件
- 需求的场景描述(希望解决的问题) 小程序中有1对1和客户对话的场景(无需加对方好友)。开发的小程序没有微信的音频视频流畅。客户体验不好。 -希望提供的能力: 开通开放IM组件? 在临时1对1对话场景中临时调用微信原生音频视频。
2018-07-18