个人案例
- 飞会信息
一款风格简洁的天气信息查询小程序。
飞会信息扫码体验
@官方 我也碰到这个问题,应该怎么处理?
getLocation:fail:unsupported typewx.getLocation({ type: 'gcj02 ', success: function (res) { console.log(res.latitude+'--'+res.longitude); wx.setStorageSync('lat',res.latitude); wx.setStorageSync('lng',res.longitude); }, fail: function(res) { console.log(res); console.log('定位失败'); } }); 部分安卓机可以显示,但是有的手机就出现下面这种情况! wx.getLocation的两种type都尝试过了。 [图片]
2018-09-01抱歉,经调试,发现是 wx:for 位置放置错误,正确是应该放置在第二个view组件上。
wx:for中 flex-direction: row无效为何不能横向对齐? <view wx:for="{{picList}}" class='v1' > <view class='v2'> <view><image class='vimage' src='{{item.Pic}}'></image></view> <view>{{item.text}}</view> <view>{{item.info}}</view> </view> </view> .v1 { display: flex; flex-direction: row; } .v2{ width:375rpx } .vimage { width: 375rpx; height: 260rpx; }
2018-08-02