- 为什么我的vant weap引入不成功?
[图片] 这是报错 这是我引入的json [图片]
2020-07-01 - 请问一下,我的云函数突然不能本地调试了这是为什么?
开启本地调试失败 worker for function code2 crashed with error code: 1 (Uncaught Fatal Exception) 加载执行入口文件失败,错误如下 Error: Cannot find module 'got' Require stack: - C:\Users\ASUS\WeChatProjects\miniprogram-16\cloudfunctions\code2\index.js - C:\Users\ASUS\AppData\Roaming\Tencent\微信开发者工具\package.nw\js\common\cloud-functions-debugger-server\worker\node.js at Function.Module._resolveFilename (internal/modules/cjs/loader.js:625:15) at Function.Module._load (internal/modules/cjs/loader.js:527:27) at Module.require (internal/modules/cjs/loader.js:683:19) at require (internal/modules/cjs/helpers.js:16:16) at Object.<anonymous> (C:\Users\ASUS\WeChatProjects\miniprogram-16\cloudfunctions\code2\index.js:3:11) at Module._compile (internal/modules/cjs/loader.js:776:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:787:10) at Module.load (internal/modules/cjs/loader.js:643:32) at Function.Module._load (internal/modules/cjs/loader.js:556:12) at Module.require (internal/modules/cjs/loader.js:683:19) { code: 'MODULE_NOT_FOUND', requireStack: [ 'C:\\Users\\ASUS\\WeChatProjects\\miniprogram-16\\cloudfunctions\\code2\\index.js', 'C:\\Users\\ASUS\\AppData\\Roaming\\Tencent\\微信开发者工具\\package.nw\\js\\common\\cloud-functions-debugger-server\\worker\\node.js' ] } z这是报错信息,上一秒还在测试,下一秒啥操作没有就开始报错
2020-06-28 - 请问一下,我云函数调用二维码生成接口好像执行错误?
const appid = '***', secret = '***';//此处是有数据的,但我打码了 console.log(appid+secret); const AccessToken_options = { method: 'GET', url: 'https://api.weixin.qq.com/cgi-bin/token', qs: { appid, secret, grant_type: 'client_credential' }, json: true }; console.log(AccessToken_options)//此处打印内容为 [图片] 这个语句貌似没有执行,请问这是为什么。
2020-06-28 - wx.startLocationUpdateBackground在后台上传位置的条件?
我想问问,这个函数能否在,小程序退出但微信在后台或者是微信聊天中,这个函数是否依然会调用并且保存 在 “用户在执行小程序退出但微信在后台或者是微信聊天后用户的位置变化信息“”,因为之前看过某个相关问题的官方回答,他说可以只要微信不被销毁就能上传位置信息,但实际上我并没有做到
2020-06-24 - 为何我设置的polygon地理区域无法在地图上显示?
x相关代码:js polygon:[{points:[{ longitude: 106.705567, latitude: 26.583274 }, { longitude:106.713113, latitude: 26.599298 }, { longitude: 106.696081, latitude: 26.605759 },{ longitude: 106.705567, latitude: 26.583274 }, ], strokeColor:"#FF33FF", strokeWidth: 2, fillcolor:'#1791fc', zIndex:50 }] wwxml <map id="map" longitude="{{jingdu}}" latitude="{{weidu}}" scale="14" controls="{{controls}}" bindcontroltap="controltap" markers="{{markers}}" bindmarkertap="markertap" polyline="{{polyline}}" bindregionchange="regionchange" show-location style="width: 100%; height:300px;" polygon="{{polygon}}"></map>
2020-06-19 - 在地图组件使用的时候地图无法显示?
下列是相关代码: var jingdu=null; var weidu=null; Page({ data: { jingdu:null, weidu:null, markers: [{ iconPath: "/resources/others.png", id: 0, latitude: null, longitude: null, width: 50, height: 50 }], polyline: [{ points: [{ longitude: 113.3245211, latitude: 23.10229 }, { longitude: 113.324520, latitude: 23.21229 }], color:"#FF0000DD", width: 2, dottedLine: true }], controls: [{ id: 1, iconPath: '/resources/location.png', position: { left: 0, top: 300 - 50, width: 50, height: 50 }, clickable: true }] }, regionchange(e) { console.log(e.type) }, markertap(e) { console.log(e.detail.markerId) }, controltap(e) { console.log(e.detail.controlId) }, onLoad:function(){ if (!wx.cloud) { wx.redirectTo({ url: '../chooseLib/chooseLib', }) return } // 获取用户信息 wx.getSetting({ success: res => { if (res.authSetting['scope.userInfo']) { // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 wx.getUserInfo({ success: res => { console.log("授权成功 "+res) console.log(res) wx.getLocation({ success: res => { console.log(res) this.setData({ 'markers[0].latitude':'res.latitude', 'markers[0].longitude':'res.longitude', jingdu:res.longtitude, weidu:res.latitude }) console.log({jigndu}) console.log({weidu}) } }) } }) } } }) }, }) wwxml <map id="map" longitude="{{jingdu}}" latitude="{{weidu}}" scale="14" controls="{{controls}}" bindcontroltap="controltap" markers="{{markers}}" bindmarkertap="markertap" polyline="{{polyline}}" bindregionchange="regionchange" show-location style="width: 100%; height:300px;"></map> d地图是一片白的,错误我没看懂,说着没定义,但是这个jingdu是在data里面的啊,而且我也定义了var jingdu=null; z这是错误信息 [图片]
2020-06-17 - 小程序数组查询指令in无法运行?
x相关代码 wx.cloud.callFunction({ name: 'login', data: {}, success: res => { console.log('[云函数] [login] user openid: ', res.result.openid) var userid = res.result.openid; _openid= userid; console.log(_openid); this.setData({ _openid:userid }) authorlist.where({ first:"1", person:_.in(_openid) }).get({ success: res =>{ console.log(res.data['length']); var flbooklist=res; console.log(res.data[0].person.length) this.setData({ flbooklist:flbooklist.data }) // console.log(res.data[1]) // console.log("执行到循环前"+length1) }, fail: err => { console.error(err) } }) }, fail: err => { console.error('[云函数] [login] 调用失败', err) } }) r然后这是报错的代码,get里面的fail: err => { console.error(err) } c报错内容是 [图片]这样的请问为什么
2020-06-12 - 如何在云数据库中的某个记录中某个数组类型字段插入数据(第一个或最后一个都行)?
borrowBook: function (e) { authorlist.where({ bookname:bookname, first:"1", }).update({ data:{ person: _.push(test1) }, success: res =>{ console.log({test1}) console.log("person数组添加成功") console.log(res) } }) }, z这是我用于执行向特定数组中插入数据所调用的方法,但虽然test1确实带值为1,且console.log("person数组添加成功")也打印成功,但实际数组并没有数据 z增加,我想问一下这是为什么
2020-06-12 - 我想知道为什么我这个循环无法执行?
JS代码 onLoad: function () { console.log(bookmsg); var that = this; authorlist.where({ first:"1", }).get({ success: res =>{ console.log(res); var flbooklist=res; this.setData({ flbooklist:flbooklist.data }) var length1=res.length console.log("执行到循环前") for (let i = 0; i < res.length; i++) { var booknames=res.data[i].bookname console.log("执行循环") authorlist.where({ bookname:booknames }).count().then(res => { console.log("第"+i+"个书名的现有人数是 "+res.total) var population=res.total this.setData({ population:population, }) }) } } }) }, d但这一段代码只执行到了 console.log("执行到循环前") m目标是为了达成在每次onload的时候都能用从一个数据库中抽取出的字段bookname以及遍历其中的值来count查询相同字段的记录数量并存入一个数组打印出来 j简单点讲就是动态监测参与某一正在举办的活动的人数变动
2020-06-07 - 如何动态监测云数据库的某个集合中相同字段的记录数量多少并显示在wxml页面中?
[图片]功能是希望右边众筹人数下能够动态显示出多少人参加了众筹,意味着,动态监测数据库中相同字段的记录数量,我虽然知道count但不知道如何去实现这种功能,要用count得用bookname字段去匹配,但[图片]这个表格是在onload中自动加载的,书名和价格等数据都是从数组中[图片]用item.xxx自动打印的,那怎么去自动打印右边的人数啊
2020-06-06