- 生成二维码,扫码没反应?
js部分 //生成二维码 createQRCode: function(){ wx.cloud.callFunction({ name: 'createQRCode', data: { // openid: 1, id: "oskUN5hwrBJ7EqZSIwUEI6EkWNlA" } }).then(res => { console.log(res) let fileManager = wx.getFileSystemManager() let filePath = wx.env.USER_DATA_PATH + '/qr.jpg' console.log('filePath', filePath) fileManager.writeFile({ filePath: filePath, encoding: 'binary', data: res.result.buffer, success: (res => { console.log(res) console.log(filePath) wx.hideLoading() this.setData({ img: filePath }) }) }) }) }, 云函数部分 // 云函数入口函数 exports.main = async (event, context) => { try { const result = await cloud.openapi.wxacode.getUnlimited({ "path": 'pages/square/userInfo/userInfo?id='+event.openId, "width": 280, "isHyaline":true, "scene": 'oskUN5hwrBJ7EqZSIwUEI6EkWNlA', "checkPath": false, //设置不透明底色 "envVersion": 'release' }) return result } catch (err) { return err } } 参数哪不对呢? 生成了二维码,就是扫码没反应。
2023-03-03 - 怎么按Ctrl去追寻文件操作呢?
你import的文件,有的时候是复制来的,但是就是说你没有引用到,这个时候你按Ctrl去追寻文件,无法追寻到,只能重新打文件名称,然后按照编译器提示的输入,才可以追寻到。
2023-03-01 - userInfo.js加上面import报下面错误not defined?
import drawQrcode from '../../utils/weapp.qrcode.esm.js' userInfo.js加上面import报下面错误,啥原因呢? Error: module 'pages/square/userInfo/userInfo.js' is not defined, require args is 'pages/square/userInfo/userInfo.js'
2023-03-01 - 微信小程序想用户自己生成自己的二维码,有啥好的方法吗?
rt,就是想生成用户甲自己的二维码,然后别的用户扫描甲用户的二维码,获得甲用户的信息.
2023-03-01 - 模拟微信聊天,弹出软键盘时,计算软键盘的高度时,数据不准确?
看如下图片,输入框有时能出现有时被遮挡住,怎么处理可以保证软键盘高度准确呢? js部分代码 inputFocus: function(t) { var that = this; that.setData({ inputFocus: !0, bottomType: 1, // 原来是0 hight362: t.detail.height + 45 + 40, //t.detail.height键盘软盘高度,45输入框高度,40最后聊天记录和输入框顶部之间高度 }); duration = 980; that.toViewBottom(); that.setData({ bottom_val: 0, }); }, wxml部分代码 <view class="chat-tencvi" style="{{sendout?'width:63%;':''}}"> <textarea mode="aspectFill" adjust-position="{{false}}" bindblur="inputBlur" bindfocus="inputFocus" bindinput="bindMsgInput" wx:if="{{!voice}}" focus="{{isInputFocus}}" placeholder="{{inputreminder}}" value="{{inputMsg}}" maxlength="-1"/> <view bindtouchstart="touchdown" bindtouchend="touchup" wx:if="{{voice}}">按住 说话</view> </view> [图片][图片][图片]
2023-01-29 - 怎么样通过云函数获取云数据库记录的某几个字段?
field里面填写需要返回字段吗,有没有例子,谢谢! else if (event.a == 51) { try { return await db.collection('singleinfo').where({ }).field({ }).orderBy('lasttime', 'desc') .skip(8) .get() } catch (e) { console.log(e) } }
2022-12-03 - 用云函数获取云数据库记录的某几个字段,在field填写需要的字段吗?
else if (event.a == 51) //使用了,没有登录时,单身广场显示 { try { return await db.collection('singleinfo').where({ }).field({ }).orderBy('lasttime', 'desc') .skip(8) .get() } catch (e) { console.log(e) } }
2022-12-03 - 怎么得到数组变量数据大小呢?
var userInfos = wx.getStorageSync("userInfos"); 想知道userInfos用户信息数组的数据大小,有啥函数或者方法呢?
2022-12-02 - 怎么判断本地缓存图片被删除了呢?
通过 wx.removeSavedFile({ filePath: val.filePath }); 把缓存图片删除了,怎么判断http://store/QmQXT8LCaLgH261f931bac5aa01168fd100182bc6c33.jpg这个图片是否被删除了呢?判断这个路径值内容是否否是空吗?怎么判断呢?
2022-11-20 - 自己定义的普通函数,返回值用return吗?
这样return时,得不到值,请教怎么得到返回值。 movedog1 = that.gettempPath(movedog); console.log('movedog1', movedog1); //下载云存储图片路径,得到临时图片路径 gettempPath: function(cloudurl){ console.log('cloudurl'+ cloudurl); var tempurl = ""; wx.cloud.downloadFile({ // wx.downloadFile({ //这个地方的fileID就是云存储文件的fileID fileID: cloudurl, success: function(res) { if(res.statusCode===200){ console.log('图片下载成功'+ res.tempFilePath); tempurl = res.tempFilePath; return tempurl; //第二步:使用小程序的文件系统,通过小程序的api获取到全局唯一的文件管理器 } } }) },
2022-11-14