楼主,请问解决了吗?我也遇到了
map中的customCallout内coverview嵌套coverview真机偶现文案无法显示?<Map id={id} className='map' setting={{ ...setting }} subkey={qqKey} layerStyle={1} latitude={lnglat?.latitude} longitude={lnglat?.longitude} markers={mapMarkers} scale={customScale} enablePoi={false} {...other} style={{ height: height, width: width, zIndex: deviceType === 'IOS' && auto ? -1 : 0 }} onRegionChange={(e) => handleMapChange(e)} polyline={polyline} > <CoverView slot='callout'> {mapMarkers.map(item=> <CoverView className={ item.title === '取/还车位置' ? 'marker-pop-custom1' : 'marker-pop-custom' } marker-id={item.id} key={item.id}> <CoverView className='pop-title'>{deviceType === 'IOS' ? item.title + ' ': item.title }</CoverView> { item.labelContent && item.reserveType === 1 && <CoverView className='pop-desc'>{deviceType === 'IOS' ? item.labelContent + ' ': item.labelContent}</CoverView> } </CoverView> )} </CoverView> </Map> 其中mapMarkers的数据如下图 [图片] 模拟器上正常显示 [图片] 真机会偶现各个情况 [图片][图片][图片] 考虑过可能是数据异步未显示的问题,但是通过真机调试,发现页面的map中是存在上面的数据的 [图片][图片] 所以想问下这种问题出现的原因是coverview嵌套的问题吗?目前出现的概率很高,基本上2,3次就会出现一下空白的callout
2022-07-20现在还有这样的问题,请问解决了吗
动画Animation连续调用多个step(),在最新版ios13.4.1下动画和其他机型表现不一致onLoad: function(options) { var th=this; setTimeout(function(){ var animation = wx.createAnimation({ duration: 500, timingFunction: "linear", delay: 0, transformOrigin: "50% 50%", }) animation.translate(154, 0).step(); animation.translate(200,0).step(); animation.translate(300,0).step(); //导出动画数据传递给组件的animation属性。 th.setData({ animationData: animation.export(), }) },2000) } <view style="width:100px;height:100px;background:pink;position:absolute;top:0;left:0" animation="{{animationData}}"></view> 如上述代码,页面加载2秒后,执行一段位移动画,在ios13.4.1下,每一个step会重新回到起点重新开始执行,造成动画不连贯,其他低版本ios和安卓机型和微信开发者工具未发现此异常
2022-03-16[图片] 新创建的demo项目,打开项目直接使用wx.checkSession()检查是否登录,检查结果为success已登陆
wx.checkSession()一直返回成功问题?使用微信开发者工具调试代码,清除所有缓存包括登陆缓存,但是调用微信接口wx.checkSession()检查登陆是否过期时依然返回success,这是怎么回事
2020-02-19