亲测可以
swiper-item能嵌套swiper吗?求问:一个swiper中的swiper-item里能嵌套[另一个swiper]吗?
2018-06-28[图片] 设置下这里呢
后台数据量大,wx.request请求返回不到数据后台数据运行时间是:14284 [图片] [图片] 第二个是小程序前端获取数据详细,,, 问题是:后台数据运行时间较长,,,后台数据量特别大,,,,可是小程序通过WX.request方法进入了请求,就是带不回来数据,,,后台执行完毕,小程序console什么都没有。。。也不显示什么。。。
2018-06-25let param = JSON.parse("false") console.info(param);
怎么把“false”变成布尔值的false?传参过来的 false 被解读成了字符串,所以被页面认为是 布尔值的 true ,“false”该怎么转换成 false?
2018-06-25可以试试延迟显示 live-pusher 组件,这样 live-pushe组件应该在 live-player组件上面
小程序 live-pusher, live-player 相互覆盖问题现在想要实现一个双向视频的功能,其中主画面是 live-player主键,占整个手机屏幕.live-pusher是次画面,放在屏幕的右下角,并且显示层级比live-player高,覆盖在live-player上面.经过测试,发现这个2个原生组件的层级永远是live-player比较高,live-pusher会被完全遮挡住. 想请教下有没有方法调整这2个组件之间的显示层级?
2018-06-21我也正在做一个IM小程序,可以加微信交流下
关于输入框的问题,已经问了好几遍。能不能回答我下?谢谢小程序里面要实现聊天的功能,目前遇到的一个问题。 1、点击输入框后,页面往上移动了,最新聊天的文字被覆盖。尤其是刚开始创建对话 2、textarea获得焦点后移动小键盘上方过程缓慢与input表现不一致,不能与微信一样同步弹出。肉眼看上去明显,体验糟糕
2018-06-05https://developers.weixin.qq.com/blogdetail?action=get_post_info&lang=zh_CN&token=48800756&docid=0008847a6240582c30c6fd81b56800[图片] e是button按钮的事件,两个框框里面的数据虽然看一起都一样,但是实际上不一样哦,这是我的解决方案,完美解决 下面这段代码是index.js的授权按钮点击绑定的事件 [图片]
小程序授权异常问题线上的是可以的,就开发版和体验版有这样的情况 在测试时,发现在点击授权的时候,经常不会弹出授权弹框,而且能拿到加密数据,然后到后台去解析的时候就报解析失败。 就从下午开始一直出现这样的问题。 具体代码是这样的: <button open-type="getUserInfo" bindgetuserinfo="getUserInfo"> [图片] // 全局获取用户信息 getUserInfo: function (res, type, callback) { let _this = this; // console.log('---获取用户信息---'); // console.log(res); // console.log('----------'); if (res.detail.errMsg == 'getUserInfo:fail auth deny') { wx.showModal({ title: '用户授权', content: '本小程序需用户授权,请重新点击按钮授权。', mask: true, confirmColor: '#F45C43', success: function (res) { } }) } else if (res.detail.errMsg == 'getUserInfo:ok') { let userInfo = res.detail.userInfo; _this.globalData.userInfo = userInfo; wx.setStorageSync('userinfo', userInfo); callback({ hasUserInfo: true, userInfo: userInfo }); _this.wxLogin(res.detail.encryptedData, res.detail.iv, type) } }, //授权登录,拿token wxLogin: function (encryptedData, iv, type) { wx.setStorageSync('userType', type);//user登录方式,sell,buy // body... wx.login({ success: function (res) { "use strict"; if (res.code) { let params = { appid: API.APP_ID, code: res.code, encryptedData: encryptedData, iv: iv }; if (type === 'sell') { wxRequest.fetch(API.authLogin + '?_iscreateUser=false', null, params, "POST").then(res => { "use strict"; // console.log() if (res.data.resultCode === '100') { console.log(res.data.resultContent); wx.setStorageSync('unionid', res.data.resultContent.unionId); wx.setStorageSync('openid', res.data.resultContent.openId); util.pageGo('/pages/sell/apply/index', 1) // AuthProvider.onLogin(type, res => { // console.log(res, '获取token') // }) } else { console.log('error') } }) } else if (type === 'buy') { wxRequest.fetch(API.authLogin, null, params, "POST").then(res => { "use strict"; // console.log() if (res.data.resultCode === '100') { console.log(res.data.resultContent); wx.setStorageSync('unionid', res.data.resultContent.unionId); wx.setStorageSync('openid', res.data.resultContent.openId); AuthProvider.onLogin(type, null, res => { console.log(res, '获取token') }) } else { console.log('error') } }) } } } }); },
2018-05-31试试注释掉你的console的调试信息
安卓6.6.7 有bug且性能明显降低小程序, 在同一款机型(小米6)的不同微信版本(6.6.6和6.6.7)表现 安卓6.6.7 突然出现了一种奇怪的报错: [图片] invalid string length??? 我顺着报错提示的函数找, 确实有一个stringify, 但是把它删掉以后, 报错依然存在, 而这些, 在6.6.6中是完全没有的 之后测试了别的一些页面, 部分页面也有这个问题, 一些按钮甚至不能点击了 , 画面甚至出现了黑色的大块(ui渲染都有间歇性问题) 而这个小程序, 在6.6.6上跑的很顺滑 后来链接开发工具上的远程调试, 也没有任何问题,(也就是说,只有在安卓6.6.7上, 才有这个问题) 所以实在无法排查到到底什么原因
2018-05-30