微信小程序
文章平均质量分 50
晓未苏
一个需要技术提升的且茫的码农
展开
-
微信小程序云开发 聚合函数使用orderby报错问题
在使用小程序云函数关联表查询时候,发现orderby方法一直报错,开始以为是orderby不支持云函数,去微信开发文档看了后发现orderby是支持云函数的,弄了半天发现是因为Aggregate函数不能喝orderby方法一起使用,Aggregate函数有自己的排序方法sort(object: Object)以下是Aggregate函数支持的方法...原创 2021-04-29 08:41:52 · 1250 阅读 · 0 评论 -
微信小程序生成小程序码和展示
云函数代码:// 云函数入口文件const cloud = require('wx-server-sdk')cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV})// 云函数入口函数exports.main = async (event, context) => { try { const result = await cloud.openapi.wxacode.getUnlimited({ scene:event.scen原创 2021-03-30 19:52:49 · 1116 阅读 · 0 评论 -
微信小程序分页查询更多
.view-comment{ background-color: #f1b65c; height: 650rpx;}.comment-content{ margin-top: 30rpx; margin-left: 40rpx; margin-bottom: 20rpx; display:flex;}.content-item{ margin-left: 10rpx;}.commet-tips{ margin-top:10rpx; font-size: 25原创 2021-03-14 18:47:35 · 518 阅读 · 1 评论 -
微信小程序增删改查方法
官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/Cloud.database.html//先获取数据库的引用const db = wx.cloud.database()//获取集合的引用const image= db.collection('image')新增记录image.add({ // data 字段表示需新增的 JSON 数据 data: { image_原创 2021-03-11 10:34:35 · 2307 阅读 · 0 评论 -
微信小程序图片裁剪image-cropper插件使用
首先非常感觉大佬的图片裁剪插件 image-cropper,下面就是大佬的地址文章地址https://developers.weixin.qq.com/community/develop/article/doc/000aecd2f38df8efb55a0250b5bc13大佬Demo地址:https://github.com/wx-plugin/image-cropper-demoimage-cropper插件github地址:https://github.com/wx-plugin/image-cr原创 2021-03-09 20:35:50 · 6349 阅读 · 2 评论 -
微信小程序先图片预览后提交云存储
微信云存储文档地址https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/capabilities.html#%E5%AD%98%E5%82%A8 <view class="btn-list"> <button bindtap="chooseImage">点击上传图片</button> <text class="tips">只支持JPG、PNG、GIF,大小不超过5M</原创 2021-03-09 10:49:29 · 602 阅读 · 0 评论