- 微信小程序,主体变更以后,用户的openid是否会发生改变?
微信小程序,主体变更以后,用户的openid是否会发生改变? 因公司业务发展,将小程序的主体信息,由A更改为B,用户的openid是否会发生变化,程序是否需要在做什么处理?
2022-03-03 - uni.openSetting在ios端会提示“xx未使用你的任何信息”?
uni.openSetting 在 ios 端会提示“xx未使用你的任何信息”?为什么不能像android一样打开设置地理位置那个页面呢? [图片] uni.getSetting({ success: function(res) { var statu = res.authSetting; console.log(statu); if (!statu['scope.userLocation']) { uni.showModal({ title: '是否授权当前位置', content: '需要获取您的地理位置,请确认授权,否则定位功能将无法使用', success(tip) { if (tip.confirm) { uni.openSetting({ success: function(data) { if (data.authSetting["scope.userLocation"] === true) { uni.showToast({ title: '授权成功', icon: 'success', duration: 1000 }) //授权成功之后,再调用chooseLocation选择地方 setTimeout(function() { uni.chooseLocation({ success: (res) => { _this.hasLocation = true; _this.lng = res.longitude; _this.lat = res.latitude; _this.address = res.address; _this.address_name = res.name; } }) }, 1000) } } }) } else { uni.showToast({ title: '授权失败', icon: 'none', duration: 1000 }) } } }) } } })
2022-02-28 - wx.openDocument(Object object) 如何修改打开文件名称?
wx.openDocument(Object object) 如何修改打开文件名称?
2022-02-15 - web-view如何设置大小,且web-view如何被覆盖?
web-view如何设置大小,且web-view如何被覆盖?cover-view覆盖不到呢。 <view class="container"> <view class="page-body"> <view class="page-section page-section-gap"> <web-view :src="webUrl" class="webViewBox"> <cover-view class="cover-view"> <cover-view class="container"> <cover-view class="flex-wrp" style="flex-direction:row;"> <cover-view class="flex-item demo-text-1"></cover-view> <cover-view class="flex-item demo-text-2"></cover-view> <cover-view class="flex-item demo-text-3"></cover-view> </cover-view> </cover-view> </cover-view> </web-view> </view> </view> </view>
2022-02-15 - 页面无法监听onPageScroll事件?
页面为了隐藏右侧的滚动条,采用了如下方式: 父容器 width: 100vw 子容器 width: 100vw + 6px 是否是6px自己试试 https://developers.weixin.qq.com/s/lt6oOwmT7UiN 但是这样使用以后,发现页面无法监听 onPageScroll 事件
2021-12-20 - 后端生成的微信二维码,通过编译二维码扫码获取不到scene参数?
[图片] [图片] 后端代码: 使用的这个文档:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/qr-code/wxacode.getUnlimited.html [图片] [图片]
2021-12-13 - 自定义导航栏,开启下拉刷新,不会固定在顶部,怎么解决?
要做自定义导航栏,开启下拉刷新以后,安卓手机上导航栏不会固定在顶部;且下拉刷新的高度怎么设置
2021-12-08 - 微信小程序怎么隐藏页面的默认滚动条?
//去除滚动条 ::-webkit-scrollbar { width: 0; height: 0; color: transparent; display: none; } 没有效果呢, 竖着还是有滚动条
2021-12-07 - css倒计时动画,第一次执行卡顿?第二次就正常
<template> <view> <view class="box"> <view class="left_box"> <view class="left_item moving_left"></view> </view> <view class="right_box"> <view class="right_item moving_right"></view> </view> <view class="mask">3</view> </view> </view> </template> <style scoped> .box{ /* 最外层的盒子 */ width:160upx; height:160upx; margin: 0 auto; position: relative; overflow: hidden; border-radius: 50%; background-color: #ffac44; } .left_box,.right_box{ /* 左右两边用于 隐藏 旋转的div的盒子 通过overflow来隐藏内部div旋转出去的部分 */ position: absolute; top: 0; width:81upx; /* 不知道为什么不多一个像素会有空隙*/ height:160upx; overflow: hidden; z-index: 1; } .left_box{ left: 0; } .right_box{ right: 0; } .left_item,.right_item{ width: 81upx; height: 160upx; background-color: #ffd298; } .left_item{ /* 1.设置圆角,圆角大小为高度的一半 2.这只旋转的中心店,这是左边圆,中心点设置到右边中心点,右边圆则设置到左边中心点 */ border-top-left-radius: 80upx; border-bottom-left-radius: 80upx; } .moving_left{ transform-origin: right center; transform: rotate(180deg); animation: loading_left 1s linear infinite; } .right_item{ border-top-right-radius: 80upx; border-bottom-right-radius: 80upx; } .moving_right{ transform-origin: left center; transform: rotate(180deg); animation: loading_right 1s linear infinite; } .mask{ /* 遮住div多余的部分,呈现出线条的效果 */ position: absolute; top: 25upx; left: 25upx; right: 25upx; bottom: 25upx; z-index: 2; border-radius: 50%; background-color: #fff; color: red; display: flex; justify-content: center; align-items: center; font-size: 40rpx; font-weight: bold; } @keyframes loading_left{ 0%{ transform: rotate(0deg); } 50%{ transform: rotate(0deg); } 100%{ transform: rotate(180deg); } } @keyframes loading_right{ 0%{ transform: rotate(0deg); } 50%{ transform: rotate(180deg); } 100%{ transform: rotate(180deg); } } </style>
2020-10-13 - 小程序转化跟踪 /marketing/user_actions/add 报错 ?
{"errcode":900351000,"errmsg":"url malformed"} url格式到底怎么写呀,几种都试了就是报错 [图片] 文档地址: https://ad.weixin.qq.com/guide/457 [图片] [图片]
2020-03-10