- 如何查看云函数?
已解决 删除
2021-04-02 - animation动画的问题?
wxml. <button bind:tap="onShowAnim">show</button> <view wx:if="{{show}}"> <!-- 执行一个animation动画 --> </view> js. onShowAnim(event) { this.data.show = true; //显示 this.setData({ show:true }) this._animation(); }, onCloseAnim(event) { this.data.show = false; //隐藏 this._animation(); }, _animation() { if (this.data.show) { anim.bottom('0%').step(); anim2.opacity(0.6).step() this.setData({ animationData: anim.export(), animationShade: anim2.export() }) } else { anim.bottom('-100%').step() anim2.opacity(0).step() this.setData({ animationData: anim.export(), animationShade: anim2.export() }) } }, 脑壳疼,可能一直没找到关键点。用show来控制显示隐藏,当按钮控制show从初始值false为true时上拉弹框直接显示, animation 动画不执行。后面不知道 怎么又正常了,感觉没修改什么代码。给他写成组件后在组件调用方调 onShowAnim 动画不执行 但是使用组件里的button按钮调用onShowAnim却又是正常的。我已蒙了,请求支援
2020-10-10 - 关于云函数使用全局变量获取不到值?
// 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() const cacheCode = {}; // 云函数入口函数 exports.main = async (event, context) => { let method = event.method; if (method === 'get') { return getCacheCode() } else if (method === 'set') { return setCacheCode(event) } } function setCacheCode(event) { let info = { key: '10010', value: '中国联通' } cacheCode[event.a] = info; return cacheCode; } function getCacheCode() { return cacheCode; } cacheCode 为什么在第二个函数里拿不到值呢,第一个拿到了 文档里写了 是无状态函数 (每个云函数实例都在 [代码]/tmp[代码] 目录下提供了一块 [代码]512MB[代码]的临时磁盘空间用于处理单次云函数执行过程中的临时文件读写需求)我这样写拿不到,是否有其它方法呢???
2020-08-08