- 小程序获取位置隐私保护已设置,仍提示无未声明fail-api作用域?
小程序获取位置隐私保护已设置,并通过审核,但是调用API时仍提示"errMsg":"getLocation:fail api scope is not declared in the privacy agreement","errno":112。 更新:提示变成{"errMsg":"getLocation:fail privacy permission is not authorized","errno":104}了。 [图片]
2023-08-16 - scroll-view 在页面弹窗关闭之后会自动滚到自顶部,而不是停留在当前滚动位置
scroll-view 在页面弹窗关闭之后会自动滚到自顶部,而不是停留在当前滚动位置;在开发者工具,安卓及IOS都可以复现;期望效果是可以停留在当前用户滚动的位置,而不是自动往上滚动。 // ScrollView组件测试 const scrollViewDemo = () => { return ( <ScrollView className='page_scrollView' scrollY scrollWithAnimation > <View className='text_box'> text_box_1 </View> <View className='text_box'> text_box_2 </View> <View className='text_box'> text_box_3 </View> <View className='text_box'> text_box_4 </View> </ScrollView> ) } const dialogDemo = () => { const handleCloseCopyDialog = () => { setIsShowCopyDialog(false) } return ( <View className='test_custom_mask'> <View className='dialog'> <View className='test_custom_dialog_close' onClick={handleCloseCopyDialog}></View> <View className='copy_text_container'> 1111 </View> </View> </View> ) } return ( <View className='test_page'> {/* { helloWorld() } */} { scrollViewDemo() } <View className='g_button' onClick={() => setIsShowCopyDialog(true)}>添加客户</View> { isShowCopyDialog && dialogDemo() } </View> ) .test_custom_mask { position: fixed; top: 0; left: 0; width: 750rpx; height: 100%; background: rgba(0,0,0,0.5); // background: rgba(141, 138, 138, 0.3); backdrop-filter: blur(13rpx);//毛玻璃属性 z-index: 100; } .test_custom_dialog { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background-size: cover; background-repeat: no-repeat; } .test_custom_dialog_close { position: absolute; top: 50rpx; right: 45rpx; width: 32rpx; height: 32rpx; background-size: cover; background-repeat: no-repeat } .dialog { width: 615rpx; height: 1026rpx; background: #FFFFFF; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 29rpx; padding: 40rpx 60rpx; box-sizing: border-box; }
2023-03-24 - 企业微信 iOS image组件的 show-menu-by-longpress 属性设置后无效
iphone ios15.5 weChat 8.0.15 企业微信 iOS image组件的 show-menu-by-longpress 属性设置后无效,长按没有弹出功能弹窗。在安卓正常,ios微信正常。 <Image className='report_img' mode='widthFix' onLongPress={onLongPressPro} src={image.ellipse} show-menu-by-longpress/>
2023-01-16 - 微信小程序使用wx.openEmbeddedMiniProgram无法正常半屏打开小程序
微信小程序使用wx.openEmbeddedMiniProgram无法正常半屏打开小程序,而是跳转小程序的形式打开。
2023-01-03 - IOS半屏打开小程序,添加好友【申请添加朋友】页面,向上滑动无法正常显示 【发送】按钮
[图片]
2022-06-17 - 小程序打开客服,点击商品(商品路径正确),无法正常进入商品详情页,而是返回上一页
从A小程序通B过,打开B小程序,在B小程序打开客服,到客服对话框点击商品,无法打开B小程序中的商品详情页,而是返回到上一页。
2022-04-19 - 微信半屏打开小程序,打开的半屏弹窗iphone xs title显示不完整
iphone xs title显示不全情况: [图片] 安卓手机正常情况: [图片]
2022-04-14