- 云函数的数据库操作无效?
代码如下。云函数均没有执行添加数据的动作,为什么? // 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() // 云函数入口函数 exports.main = async (event, context) => { const wxContext = cloud.getWXContext() const db = cloud.database() db.collection('querylogIndex').add({ data:{ openid: wxContext.OPENID, uinonid: wxContext.UNIONID, index: event.newlog }, success: function (res) { // res 是一个对象,其中有 _id 字段标记刚创建的记录的 id console.log(res) return { res} }, fail: function(res){ return {"bad":"123"} } }) return { event } } 日志的返回结果也不是我要的结果,求教各位大神。 {"event":{"newlog":{"date":"2019/07/02 11:04:53","queryId":"test","typeText":"test","value":"test"},"userInfo":{"appId":"wxb4xxx","openId":"o3M8xxx"}}}
2019-07-02 - function 传值问题
请教一下,下面这段代码用于在index的onLoad事件修改view的高度,怎么把“pagethis”传给query.exec函数呢? 同时,这个修改高度的操作,是否在App.js下更为合适呢? var pagethis = this query.exec(function (res){ pagethis.setData({ screenSwiperHeight: screenSwiperHeight }) });
2019-06-21 - 请问如何显示ascll图像?
___ .______ ______ _______ / \ | _ \ / || \ / ^ \ | |_) | | ,----'| .--. | / /_\ \ | _ < | | | | | | / _____ \ | |_) | | `----.| '--' | /__/ \__\ |______/ \______||_______/ 请问我要完整显示ascll图像,为了不破坏排序,请问用什么标签合适呢?
2019-06-20 - Page外的function如何调用setData()
const app = getApp() Page({ bottomModal() }) function bottomModal() { this.setData({ modalName: 'bottomModal' }) 请教各位大神,我在Page外自定义function,怎么才能通过setData设置数据呢?
2019-06-20 - session_key在服务端怎么判断是否失效?
根据文档解释,在客户端可以通过wx.checkSession进行判断,但是在服务端,根据用户POST提交信息,怎么判断session是否有效呢?
2019-06-20 - bindGetUserInfo的userInfo is not defined
<button open-type="getUserInfo" class="bg-green" bindgetuserinfo="bindGetUserInfo">微信登陆</button> bindGetUserInfo: function (e) { if (e.detail.userInfo) { console.log('用户按了授权按钮') userInfo = e.detail.userInfo //wxlogin() console.log(e.detail.userInfo) //获取用户数据 } 请教一下,为什么这样写后,运行的时候出现这样的错误呢? userInfo is not defined; [Component] Event Handler Error @ pages/index/index#bound bindGetUserInfo ReferenceError: userInfo is not defined
2019-06-19