- 微信云开发·资源释放通知如何关闭?
本人在开发小程序的时候多年来一直没有尝试过使用云开发的模式,但是上次无意中点开了云开发,就随便配置了一下,因为有一个月的免费额度嘛,但是现在的问题是,一个月的免费额度到期之后: 微信云开发·资源释放通知,每天都在不间断的提示,不知道在哪里关闭,故而请求社区大佬们帮我看看: [图片] 这是提示,每天都有,不间断~ [图片][图片] 这是云开发点进去的页面,实际上我早已经删除了当初配置的环境了~ 我的目的是不想再次收到上面的资源释放通知!~
02-14 - 请问2024年,微信公众号需要备案吗?是公众号,不是小程序!~
社区搜索,全部都是小程序备案相关的问题和回答,公众号倒是有1个,但是2020年的回答了~ 所以,我想问一下,2024年公众号需要备案吗?
01-11 - 小程序隐私政策已经更新了手机号的手机内容,而且也配置了隐私协议弹窗,但是使用手机号快速验证组件报错?
1.已经在小程序的隐私政策钟配置了手机号 [图片] 2.配置了隐私保护指引弹窗(这里就有一个问题,这个handleAgreePrivacyAuthorization总是不能正常回调,后面附带了具体的代码,当然这个代码我抄的别人的,因为不能回调,所以我自己加了一个tap来主动触发这个操作,不加的话点击没有任何反应) [图片][图片] 点击同意,OK,那么这一步我认为是可以了(先忽略重复不重复的问题,起码效果到位了,当然我也不知道是不是真的到位了)~ 3.使用手机号快速验证组件的时候,仍然提示 [图片] 那么,问题出在了哪里呢,我实在是找不到嘞~ <template> <view class="privacy" v-if="showPrivacy"> <view class="content"> <view class="title">隐私保护指引</view> <view class="des"> 在使用当前小程序服务之前,请仔细阅读<text class="link" @tap="openPrivacyContract">{{ privacyContractName }}</text >。如你同意{{ privacyContractName }},请点击“同意”开始使用。 </view> <view class="btns"> <button class="item reject" @tap="exitMiniProgram">拒绝</button> <button id="agree-btn" class="item agree" open-type="agreePrivacyAuthorization" @agreeprivacyauthorization="handleAgreePrivacyAuthorization" @tap="handle">同意</button> </view> </view> </view> </template> <script> export default { data() { return { privacyContractName: '《隐私保护引导》', showPrivacy: false, } }, created() { this.checkPrivacySetting() }, methods: { checkPrivacySetting() { wx.getPrivacySetting({ success: res => { console.log('getPrivacySetting', res) this.showPrivacy = true // needAuthorization是否需要用户授权隐私协议 // 返回结果为: res = { needAuthorization: true/false, privacyContractName: '《xxx隐私保护指引》' } if (res.needAuthorization) { // 需要弹出隐私协议 this.showPrivacy = true } else { this.showPrivacy = false // 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口 // wx.getUserProfile() // wx.chooseMedia() // wx.getClipboardData() // wx.startRecord() } }, fail: () => {}, complete: () => {}, }) }, // 打开隐私协议 openPrivacyContract() { wx.openPrivacyContract({ fail: () => { wx.showToast({ title: '遇到错误', icon: 'error', }) }, }) }, // 拒绝隐私协议 exitMiniProgram() { console.log('拒绝隐私协议') const that = this // 直接退出小程序 // wx.exitMiniProgram() wx.showModal({ // 如果拒绝,我们将无法获取您的信息, 包括手机号、位置信息、相册等该小程序十分重要的功能,您确定要拒绝吗? content: '您确定要拒绝吗?', success: res => { if (res.confirm) { that.showPrivacy = false wx.exitMiniProgram({ success: () => { console.log('退出小程序成功') }, }) } }, }) }, handle() { console.log('handle') this.handleAgreePrivacyAuthorization() }, // 同意隐私协议 handleAgreePrivacyAuthorization() { console.log('agree privacy') var that = this wx.requirePrivacyAuthorize({ success: () => { // 用户同意授权 // 继续小程序逻辑 that.showPrivacy = false console.log('agree handle') }, fail: () => {}, // 用户拒绝授权 complete: () => {}, }) }, }, } </script> <style> .privacy { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0, 0, 0, 0.5); z-index: 9999999; display: flex; align-items: center; justify-content: center; } .content { width: 632rpx; padding: 48rpx; box-sizing: border-box; background: #fff; border-radius: 16rpx; } .content .title { text-align: center; color: #333; font-weight: bold; font-size: 32rpx; } .content .des { font-size: 26rpx; color: #666; margin-top: 40rpx; text-align: justify; line-height: 1.6; } .content .des .link { color: #07c160; text-decoration: underline; } .btns { margin-top: 48rpx; display: flex; } .btns .item { justify-content: space-between; width: 244rpx; height: 80rpx; display: flex; align-items: center; justify-content: center; border-radius: 16rpx; box-sizing: border-box; border: none; } .btns .reject { background: #f4f4f5; color: #909399; } .btns .agree { background: #07c160; color: #fff; } </style>
2023-11-21 - 保存编译之后页面无变化
1.win7 64位 2.微信开发者工具 Stable 1.03.2008270 3.结果: [图片] 4.说明: 按照步骤申请的appid,然后创建的一个新的项目,啥也没改,然后改了下这个数据看看有没有变化,结果是没有,所以,这是为什么呢??
2020-09-04