- 为什么MapContext.openMapApp不生效?
wxml代码如下: <map id="map" class="map" longitude="{{content.item.marker.longitude}}" latitude="{{content.item.marker.latitude}}" markers="{{[content.item.marker]}}" show-compass show-scale bindmarkertap="tapMarker"></map> ts代码如下: /** * 点击标记点的回调 */ tapMarker() { const marker = this.data.content.item.marker console.log(marker.longitude) console.log(marker.latitude) console.log(marker.title) wx.createMapContext('map').openMapApp({ longitude: marker.longitude, latitude: marker.latitude, destination: marker.title, success(res) { console.log('打开地图成功'); }, fail(res) { console.log('打开地图失败', res); }, complete(){ console.log('打开地图完成'); } }); }, 点击地图上的marker后,控制台打印如下,总之就是完全没走openMapApp的逻辑: [图片]
星期日 22:02 - 为什么开发工具的图标都消失了?
[图片] [图片] 版本是最新的。更新版本之前就有这个问题,尝试更新到最新版本,依然没解决问题。重启电脑也无用。
2024-12-17 - 为什么flex布局下,组件总是换行?
大佬们,CSS配置如下图,求解为什么每一个组件都单独占了一行呢?如何才能让他们在同一行? [图片] [图片][图片]
2024-12-12 - 微信云托管后,个体工商户申请时的线上营业地址怎么填写?
我想将小程序主体转为个体工商户,以便开通微信支付功能。申请的时候发现需要填写线上营业地址,需要指定一个HTTP地址。但是云托管好像没有固定的外网HTTP地址?请问这个该怎么填呢?
2024-11-29 - 为什么swiper中嵌套horizontal-drag手势时,真机调试时不触发手势?
<swiper> <swiper-item> <horizontal-drag-gesture-handler> <view></view> </horizontal-drag-gesture-handler> </swiper-item> </swiper> 上面这种写法,在模拟器中调试是OK的,内层的水平拖拽可以正常响应。但是真机调试时,内层拖拽不会响应,而是响应swiper的拖拽。
2024-11-20 - 为什么sticky-header不生效呢?
请问一下大佬们,我就写了下面这一个很简单的demo,但是为啥吸顶不生效呢? <scroll-view class="scroll-area" scroll-y type="custom"> <sticky-section push-pinned-header="{{false}}"> <sticky-header> <view class="day-container">{{wedDay}},剩余:{{remain}}天</view> </sticky-header> <text> a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a</text> </sticky-section> </scroll-view>
2024-10-27