文档往下拉,有demo
image组件的这个属性是什么意思?[图片]
2022-11-05https://developers.weixin.qq.com/community/develop/article/doc/0004aca926cbb040c61d2548d56c13
下载视频的时候进度条一直0%怎么弄?但是后台数据是走动的[图片] [图片] 这个数据是动起来的,进度条一直显示0%,后台有下载
2022-10-12设计如此: https://developers.weixin.qq.com/miniprogram/dev/framework/ability/network.html#:~:text=%E5%9C%A8%E5%9B%9E%E5%88%B0%E5%89%8D%E5%8F%B0%E4%B9%8B%E5%89%8D%EF%BC%8C%E7%BD%91%E7%BB%9C%E8%AF%B7%E6%B1%82%E6%8E%A5%E5%8F%A3%E8%B0%83%E7%94%A8%E9%83%BD%E4%BC%9A%E6%97%A0%E6%B3%95%E8%B0%83%E7%94%A8%E3%80%82
wx.onLocationChange切后台请求后端接口?[图片] wx.onLocationChange切后台后不会请求后端接口,切后台后等几分钟进入前台,连续发送很多次一样的请求
2022-08-09如果一样为啥还要区分呢?
微信公众号调用wx.getLocation获取位置?使用wgs84和gcj02 返回的经纬度是一样的吗?
2022-08-09[图片] 传的值有问题
获取云函数中的真实时间,wxs中的tiem不是日期类型,在JS中如何转换?在学习如何获取云函数中真实数据中,其他所有的内容都能够显示出来,唯独时间显示不出来,在百度上查了很多,如果wxs中time不是日期类型,在JS中该如何转换?附上图片和代码如下 [图片][图片] 云函数代码: if(errcode == 0){ return await db.collection("weibo").add({ data:{ content:content, location:location, author:author, images:images, video:video, createTime:db.serverDate(),//插入到数据库的时间 device:device } }) }else{ return await {"errcode":1,"errmsg":"您的信息有风险,请修改再发布!"} } [图片] JS代码: db.collection("weibo").get().then(res=>{ // console.log(res); var date = res.data[0].createTime; // console.log(date); var time = new Date(date).getTime(); console.log(time); this.setData({ time:time }) }) WXS代码: var timeFormat = function(time){ console.log(time); var date = getDate(time); console.log(date); var date_seconds = date.getTime() / 1000 ; var now = getDate(); var now_seconds = now.getTime() / 1000; var timestamp = now_seconds - date_seconds; var timeStr = ""; if(timestamp < 60){ timeStr = "刚刚"; }else if(timestamp >= 60 && timestamp < 60 * 60){ var minutes = parseInt(timestamp / 60); timeStr = minutes + "分钟前"; }else if(timestamp >= 60 * 60 && timestamp < 60 * 60 * 24){ var hours = parseInt(timestamp / 60 / 60); timeStr = hours + "小时前"; }else if(timestamp >= 60 * 60 * 24 && timestamp < 60 * 60 * 24 * 30){ var days = parseInt(timestamp / 60 / 60 / 24); timeStr = days + "天前"; }else{ var year = date.getFullYear(); var month = date.getMonth(); var day = date.getDate(); var hour = date.getHours(); var minute = date.getMinutes(); timeStr = year + "/" + month + "/" + day + " " + hour + ":" + minute; } return timeStr; } module.exports={ timeFormat:timeFormat, }
2022-08-08wx.setNavigationBarRightButton({hide: true,complete:console.log}) {errMsg: "setNavigationBarRightButton:fail no permission"}
最新的规定中小程序的右上角胶囊按钮可以去除吗?官方有什么要求吗?[图片]
2022-08-05加个fail回调,打印一下错误日志
VUE项目 调用openLocation 真机调试 没有反应 ?[图片]VUE 项目 在微信中访问 点击按钮 打开微信的自带的地图 但是啥反应也没有啊
2022-08-04你已经为你自己解答了
微信h5页面可以连接蓝牙吗?目前我司需要在微信h5页面上连接设备蓝牙,进行写入开锁。但没找到微信api里有写入操作,在小程序里面可以实现。
2022-08-02正式版小程序支付过一笔订单,第二天就能开通咯
开通小程序直播的具体条件是什么?开通小程序直播的具体条件是什么?
2022-07-23这个只能你自己再小程序里处理了。 判断场景值,如果场景值是从相册选取(1049)的直接拦截 https://developers.weixin.qq.com/miniprogram/dev/reference/scene-list.html
小程序码 如何设置只能通过相机扫码打开,禁止从相册扫码打开小程序?要求只能相加扫码打开小程序,从相册拍的小程序码照片 禁止打开小程序
2022-07-23