- 小程序永久消息推送现在是否可以实现?
一次性消息订阅无法满足需求... 消息永久推送方案参考 https://developers.weixin.qq.com/community/develop/article/doc/000802135706f00cf3b9ec9c751013 微信公众号关联小程序,用微信公众号-模板消息推送消息。该方案目前是否还可以实现?? [图片] 公众号改了,新的功能里未发现模板消息 [图片] 接口权限-说公众号无法开通权限 [图片] 也没具体说到底能不能用。文档说的不明不白的,目录是使用步骤吗??模板都查不了,调用行业信息接口都异常,(ip白名单加过了,access_token就是postman发请求得到的,难道是不能用postman,); [图片]
2021-06-24 - computed watch 使用不了?
[图片] const moment = require("moment"); const {qxCloud } = require('../../../api/qxcloud'); const app = getApp(); const computedBehavior = require('miniprogram-computed'); Page({ behaviors: [computedBehavior], /** * 页面的初始数据 */ data: { currentTab: "statistic", currnet:1, remedy:{ rows:[], page:1, pageSize:10, total:0, loadEmpty:false, isLoading:false }, errand:{ rows:[], page:1, pageSize:10, total:0, loadEmpty:false, isLoading:false }, vacations:{ rows:[], page:1, pageSize:10, total:0, loadEmpty:false, isLoading:false }, }, watch: { 'remedy.**'(remedy){ console.log(remedy.rows); let self = this; if(self.data.currentTab == 'remedy' && self.data.batch_op.doing){ console.log(remedy.rows); } }, 'vacations.**'(vacations){ console.log(remedy.rows); let self = this; if(self.data.currentTab == 'vacation' && self.data.batch_op.doing){ console.log(vacations.rows); } }, 'errand.**'(errand){ console.log(remedy.rows); let self = this; if(self.data.currentTab == 'errand' && self.data.batch_op.doing){ console.log(errand.rows); } }, }, }
2021-06-18