- 微信小程序如何禁止当前页面转发到企业微信?
需求是在某个页面 不让用户进行转发到朋友和朋友圈 以及企业微信? 前两者有api 直接调用就是了,请问 如何禁止转发到企业微信?
2021-02-24 - 求助 map 绑定markers 重复渲染的问题
为什么 map 上面的 markers 在多吃 setData 后 之前的marker 仍然会显示在地图上面???而不是被清除掉??? 但是摩拜单车的小程序里面 markers 确实可以被清掉后重新设置,怎么做到的????
2017-10-12 - map组件自定义气泡(customCallout) 宽度没有自适应
开发工具上能达到预期,宽度自适应 [图片] 真机运行宽度完全变成最大宽度了 [图片]
2021-01-26 - Map组件markers真机渲染问题
[图片][图片][图片] 1、当设置markers属性clusterId时,真机调试不显示markers; 2、当不设置clusterId属性时,真机显示markers,但每个marker下方会多一个图标,该图标不是我设置的,本地更本没有这个图标; 以上2种情况在开发者工具上均没有问题,不知有人遇到过没?求解答
2021-07-13 - map组件的自定义气泡长度真机不自适应?map组件的标记ios真机移除失败?
map组件的自定义气泡长度渲染真机不一致,模拟器上正常,在真机上所有的气泡长度都是文本最长的气泡长度,气泡长度不能根据文本自适应<map class="map" longitude="{{position.lng}}" latitude="{{position.lat}}" show-location="true" markers="{{markerArr}}" bindcallouttap="markerTap"> <!-- 自定义气泡 --> <cover-view slot="callout"> <block wx:for="{{markerArr}}" wx:key="index"> <cover-view marker-id="{{item.id}}" class="customCalloutItem {{activeMarkerId==item.id?'activeCallout':''}}"> <cover-image src="{{coverImgList[activeIndex]}}" class="typeImg"></cover-image> <cover-view></cover-view> <cover-view class="title">{{item.title}}</cover-view> </cover-view> </block> </cover-view> </map> [图片][图片] 左图为模拟器,右图为ios真机。 2.map组件的标记ios真机移除失败? [图片][图片] 左图模拟器上移除标记正常,安卓真机也正常,右图ios真机标记(学校的标记还在)移除失败。 附上标记点的添加移除代码 (markerArr输出是正常的) let _this = this; this.qqmapsdk.search({ keyword, //搜索关键词 sig: true, //签名校验 page_size: 20, location: { latitude: _this.data.position.lat, longitude: _this.data.position.lng, }, //设置周边搜索中心点 success(res) { var mks = [_this.data.centerMak]; for (var i = 0; i < res.data.length; i++) { mks.push({ // 获取返回结果,放到mks数组中 title: res.data[i].title, id: parseInt(res.data[i].id), latitude: res.data[i].location.lat, longitude: res.data[i].location.lng, width: 20, height: 30, customCallout: { display: 'ALWAYS', }, }); } _this.setData({ markerArr: mks, }); console.log(_this.data.markerArr); }, });
2021-05-28 - cover-view组件设置max-width在模拟器正常,在真机无效,请问怎么解决?
组件:cover-view组件 微信版本号:安卓微信 8.0.6 cover-view组件设置了max-width的值,white-space设置为normal,在模拟器上能够正常以最大宽度换行显示,但是真机一行只显示了3个字,就被换行了,设置的max-width无效,请问下这种情况怎么办 css部分: .customCallout { background-color: #fff; border: 1px solid #ccc; border-radius: 5px; padding: 6px 10px; white-space:normal; } .content { font-size: 14px; white-space:normal; max-width: 500rpx; margin: 0px auto; } wxml部分: <cover-view slot="callout"> <block wx:for="{{customCalloutMarker}}"> <cover-view class="customCallout" marker-id="{{item.id}}" > <cover-view class="content"> {{item.title}} </cover-view> </cover-view> </block> </cover-view>
2021-06-15 - map组件嵌套在movable-area内时无法缩放?
需要在真机中测试,map 嵌套在movable-area内时,不能够双指缩放。 https://developers.weixin.qq.com/s/igOxWmmW7Bik
2020-06-25 - movable-area组件内嵌入map组件,ios系统无法双指放大缩小地图
系统信息: System: iPhone, iOS 14.6, Wechat 8.0.14 WechatLib: 2.19.6(2021.9.26 16:37:55) movable-area组件嵌套map组件,真机测试,安卓手机可以缩放地图,ios系统不行,测试机为iPhone 7Plus,缩放地图无反应。问题跟 https://developers.weixin.qq.com/community/develop/doc/000a4ef106c410a2e98acea7e51c00?highLine=movable-area%2520map这个帖子描述类似。
2021-10-05 - 安卓端 input 组件 font-weight 表现异常
#### 复现路径 在安卓端使用 input 组件,对 input 组件附加样式`font-weight: 600;`,会发现 input 在聚焦和失焦状态时显示的字体粗细程度不一致。 ![image.png](http://mmbiz.qpic.cn/mmbiz_png/4Pne1FHOYRxFoCnq5iapSsE0iaodDoNfytYhzvhF7XboFiaVZ8py2HiaqtBkWsRs5jLutOm4Dve3g4Bia64a8ibs97ug/0?wx_fmt=png) ![image.png](http://mmbiz.qpic.cn/mmbiz_png/4Pne1FHOYRxFoCnq5iapSsE0iaodDoNfytTpqllr2WLqDU9hqNngjhp8G7TJx1Ll5TtewcicuRiadbaiblTPh9zr2og/0?wx_fmt=png)
2020-11-18 - navigateToMiniProgram变更的低版本兼容
wx.navigateToMiniProgram接口即将废弃,转为使用navigator组件,但是版本最低要求2.0.7,@官方,请问对于低版本的我怎么做兼容呢?
2018-06-14