- 分包页面调用app.wxss样式会调用两次吗?
- 当前 Bug 的表现(可附上截图) [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo https://developers.weixin.qq.com/s/XiakKBm27E45
2018-12-12 - map组件markers属性中label和callout可否增加style属性
- 需求的场景描述(希望解决的问题) 想把label覆盖到marker图片中间时,遇到label没有宽高属性,textAlign设置居中没有什么效果,文字如何居中通过anchorX,anchorY调整比较麻烦。 - 希望提供的能力 [图片] - 希望提供的能力 map组件markers属性中label和callout可否增加style属性。类似于view的style属性,开发人员自己定义css样式。
2018-11-02 - 在开发工具与真机中点击marker时,callout的显示隐藏效果不一致
callout的显示隐藏效果不一致的显示隐藏效果不一致如何解决? 开发工具 v1.02.1810250 效果:(点击marker才显示marker上方的文字,其他marker的文字不显示。) [图片] 下图是开发真机(红米3 MIUI 9.6.3.0 稳定版 ) 微信(6.7.3)效果:(依次点击marker,其他marker上方文字没有消失。) [图片]
2018-10-30 - 数字、字母在view 中不会自动换行,如何解决?
[图片] 在view自动换行时中文可以,英文、数字都不可以。v1.02.1809111开发工具和 红米3 手机 微信v6.7.3 试过都是这样。
2018-10-11 - 下拉刷新与picker-view 在手机上冲突如何解决?
[图片] 之前是想弹出对话框滚动选择时间,没有对话框时可以下拉刷新。但苹果机测试可以,android机 红米3 MIUI 9.6稳定版(米8 MIUI 10 8.8.24 开发版)测试时,不能向下滚动时间。请问各位大神,如何解决啊???
2018-08-29 - 我的加法那里出错了?
代码片段:wechatide://minicode/RQ1Am0mw7a2V 计算 let res1 = 333 + 11 + 2.1 + 2.2 + 2.2 + 2.2 + 2.2 + 2.2 + 12; 为啥结果是近似值,而不是真实值。客户端(v1.02.1808101)、红米三手机(MIUI9.6 稳定版)结果都是错的。
2018-08-28 - 真机中为什么canvas 绑定事件失效
在android机 真机中测试时,触摸cvid-0水平滚动,当超出边界时只触发了 bindtouchstart ,bindtouchmove, 不会触发bindtouchend。这时候在触摸cvid-1是cvid-1的三个事件都不会触发。只有触摸cvid-0完整调用三个事件后,再去触摸cvid-1才会有cvid-1的事件。 <view class='it'> <canvas canvas-id='cvid-0' id="cvid-0" bindtouchstart="touchstart" bindtouchmove="touchmove" bindtouchend="touchend"></canvas> </view> <view class='it'> <canvas canvas-id='cvid-1'id="cvid-1" bindtouchstart="touchstart" bindtouchmove="touchmove" bindtouchend="touchend"></canvas> </view> 最后只能使用view 的这三个事件,再改插件的滚动方法才避免这种情况
2018-08-27 - wxchart柱状图android机不能水平滚动
使用canvas 标签和wxcharts 插件柱状图时在工具中可以水平滚动,在手机手机中无法滚动 <canvas canvas-id='{{it.tp}}' id = "{{it.tp}}" class='wl-chart' style="width:732rpx;height: 200px;" bindtouchstart="touchstart" bindtouchmove="touchmove" bindtouchend="touchend" ></canvas> [图片]
2018-08-22 - 开发者工具黑屏
为什么程序在一个page界面忽然黑屏且菜单栏失效,一两分钟之后弹出一个打开小程序项目的对话框?个人并没有开新项目操作。 [图片] [图片]
2018-08-06 - 运维平台提示wx.hideTabBar not a function
wx.hideTabBar is not a function;at pages/index/index page lifeCycleMethod onShow function wx.showTabBar is not a function;at pages/index/index setIsLogined function;at api request success callback function 代码片段: wywx.js文件 function hideTabBar(success, fail) { wx.hideTabBar({ aniamtion: false, success: typeof success == "function" ? success() : function (res) { console.log("wx.hideTabBar.success"); }, fail: typeof fail == "function" ? fail() : function (res) { console.log("wx.hideTabBar.fail"); }, complete: function (res) { }, }) } function showTabBar(success, fail) { wx.showTabBar({ aniamtion: false, success: typeof success == "function" ? success() : function (res) { console.log("wx.showTabBar.success"); }, fail: typeof fail == "function" ? fail() : function (res) { console.log("wx.showTabBar.fail"); }, complete: function (res) { }, }); } index.js文件中调用 var w = require("../../utils/mywx.js"); w.showTabBar(function () { console.log("w.showTabBar") }); w.hideTabBar();
2018-07-04