- Map上的controls无法点击
我在map上放了controls,想实现点击后执行相应业务,但在微信开发者工具里这些control无法点击,在真机调试时却是可以的。 工具版本:V0.20.191900 基础库:1.4.3
2017-08-10 - node.js服务端输出的日志去哪了
服务端使用的是Wafer 服务端 Demo - Node.js,里面有使用到console.log()输出调试信息,但是在终端下和/var/log里都没看到输出的日志,那需要去哪找?
2017-08-08 - 按钮长度问题
在小程序的开发文档里,button默认长度是占满整个屏宽的, [代码]<button type="default" size="{{defaultSize}}" loading="{{loading}}" plain="{{plain}}" disabled="{{disabled}}" bindtap="default" hover-class="other-button-hover"> default </button> [代码] [代码]<button type="primary" size="{{primarySize}}" loading="{{loading}}" plain="{{plain}}"[代码] [代码] disabled="{{disabled}}" bindtap="primary"> primary </button>[代码] [代码]<button type="warn" size="{{warnSize}}" loading="{{loading}}" plain="{{plain}}"[代码] [代码] disabled="{{disabled}}" bindtap="warn"> warn </button>[代码][图片] 但是我在开发者工具同样加入一个button,宽度却很小 <button size="default" type="primary" disabled="{{btnAgreeDisabled}}" >同意协议</button> [图片] 为什么它们的样式看起不一致?
2017-08-02 - 如何js代码动态修改map上controls的位置
我在地图上放了两个按钮,需要根据屏幕大小调整放置的位置,以保证在所有设备都出现在底部,要怎么实现? 代码如下: <map id="map" latitude="{{latitude}}" longitude="{{longitude}}" controls="{{controls}}" show-location="true"/> data: { latitude: 52.984402, longitude: 133.728972, controls: [ { id: 1, iconPath: '../images/open.png', position: { left: 10, top: 500, width: 105, height: 35 }, clickable: true }, { id: 2, iconPath: '../images/pay.png', position: { left: 300, top: 500, width: 105, height: 35 }, clickable: true } ] } onLoad: function (options) { var that = this wx.getLocation({ type: 'wgs84', success: function (res) { that.setData({ latitude: res.latitude, longitude: res.longitude }) } }) var info = wx.getSystemInfoSync(); //在这里动态修改两个control的left和top值 },
2017-08-02