- 云函数update怎么不可以了?
就是以个简单的数据更新的操作 之前都是好好的之前是好的之前是好的(重要的事情说三次) 不知道为什么今天抽风了 重新写了下云函数也没有用 大牛看看是哪里有问题!!!! 谢谢 [图片] 相应的云函数是 [图片]
2020-06-04 - 直播没画面是什么问题啊?
live-player-plugin 直播没画面是什么问题啊,直播状态返回的是101直播中,就是没有画面
2020-06-04 - canvas2d无法绘制临时路径的图片?
[图片]搜了半天也没找到解决方案,有大佬能帮帮忙吗😭
2020-05-27 - 如何在js中通过多个函数多次改变data中的值?
在js里通过一个function中获取当前用户的openid,然后存到page里的data中,在其他fuction里再调用data的值返回就是空,请问什么原因? Page({ data: { useropenid: '', my_order_list: [] }, getopenid_local() { var that = this wx.cloud.callFunction({ name: "getopenid", }).then(res => { that.setData({ useropenid: res.result.openid }) console.log("data.useropenid: ", that.data.useropenid) }).catch(res => { console.log("openid获取失败", res) }) get_order_list() { var that = this that.getopenid_local() console.log("orderlist里的openid:", that.data.useropenid) wx.cloud.callFunction({ name: "get_invite_list", data: { cloud_openid: that.data.useropenid }, success(res) { that.setData({ my_order_list: res.data }) console.log("成功获取res的数据:", res, that.data.my_order_list) }, fail(res) { console.log("获取res的数据失败", res) } }) }, [图片]
2020-05-14 - 怎么捕获 InterstitialAd.load 报的 promise rejection 错误?
API:InterstitialAd.load [图片]
2020-01-04 - subscribeMessage.send 云开发调试,小程序端调用可行,其它云函数调用就报错求助?
API:subscribeMessage.send APPID:wx166797882f2ec0ce Request ID: 973fb524-2b0b-11ea-8ec5-525400e4521d Request ID:f4ebc274-2b07-11ea-8015-52540029942f Request ID: 723fb2fa-2b06-11ea-b0e0-5254007aa7a1 开发者工具版本:Nightly v1.02.1912272 订阅消息授权了很多次,不是次数用光的原因。 问题描述: 我参考官方给出的请求示例,准备先测试一下云函数的消息发送。 云端测试和本地调试中的从其它云函数调用,却都会提示:Error: errCode: -501007 invalid parameters | errMsg: subscribeMessage.send:fail Invalid request param 只有本地调试中的从小程序端调用,可以发送订阅消息。 参数我都写死了也不行。 也搜索了别人的问题,似乎和我的不一样,特来发帖求助! const cloud = require('wx-server-sdk') cloud.init() exports.main = async (event, context) => { try { const result = await cloud.openapi.subscribeMessage.send({ touser: "ob0Ed5Dp-zyIWESoVxk2zhec90cQ", templateId: "eOjW50z8-Wa5k3HrRpJoWFE7HKiMMogymBfhAgsvb3Q", page: "pages/home/home", data: { "thing1":{ "value":"苹果" }, "date3":{ "value":"2015年01月15日" } } }) console.log(result) return result } catch (err) { console.log(err) return err } } 日志内容 Request ID: 973fb524-2b0b-11ea-8ec5-525400e4521d 执行时间: 76.8ms内存使用: 35.45 MB 返回结果 {"errCode"-501007"errMsg""subscribeMessage.send:fail Invalid request param"} 日志 START RequestId: 973fb524-2b0b-11ea-8ec5-525400e4521d Event RequestId: 973fb524-2b0b-11ea-8ec5-525400e4521d 2019-12-30T13:5217.177Z { Error: errCode: -501007 invalid parameters | errMsg: subscribeMessage.send:fail Invalid request param at Object.callWXOpenAPI (/var/user/node_modules/wx-server-sdk/index.js:36319) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188) errCode: -501007, errMsg: 'subscribeMessage.send:fail Invalid request param' } END RequestId: 973fb524-2b0b-11ea-8ec5-525400e4521d Report RequestId: 973fb524-2b0b-11ea-8ec5-525400e4521d Duration:76ms Memory:256MB MaxMemoryUsed:35.453125MB
2019-12-31 - 微信公众号自定义菜单跳转到小程序首页(是一个tabbar页面)可以带参数吗
请问一下,微信公众号自定义菜单跳转到小程序首页可以带参数吗,比如小程序首页路径是pages/index/index,但是它是一个tabbar页面,这样的话带的参数小程序还可以接收到吗?
2019-05-09 - javascrip有json对象变成 连接字符串的函数吗?
{"aa":2,"bb":3} 变成aa=2&bb=3
2019-12-19 - 微信小程序云开发按月份查找问题?
目前使用微信云开发,数据库也是云数据库,现在需要从数据库 生日表中 查询本月过生日的人员信息,之前用SQL时一般用[代码]select[代码] [代码]* [代码][代码]from[代码] [代码]student [代码][代码]where[代码] [代码]month[代码][代码](birthday)=[代码][代码]month[代码][代码](getdate()) 从student表中,直接将birthday字段格式化成month进行比对,小程序中试了不能用。请问有没有类似的方法??[代码] [代码][图片] [代码] [代码]数据库生日存的是date类型[代码] [代码] [代码] 有没人大神提个思路,我自己去查资料就行,自己想了好久,试了好多方法,百度也查不到,实在不行我只能在数据库里面加一个月份的字段,专门存月份,但是感觉好LOW,即然存了日期格式就应该可以取才对呀。
2019-12-16 - 求解promise链中的collection.get不能执行完成
云函数中: [图片] 如图,queryResult是一个高作用域的变量 我用了一个promise的链来进行云函数操作 [图片] 其中的三个函数都是return了一个promise, 在user_get中我从数据库collection.get了数据 想在userTimeUpdate中用这个数据 [图片] 两个函数截图如下: [图片] [图片] 但是整个promise链式的过程中始终都是一个pedding状态的promise [图片] 请问这个过程的异步怎么解决啊……大佬们……………… 很着急啊!!!
2019-04-16