是不是视频的链接,没有在微信小程序里加服务器域名
小程序video视频播放失败?视频在浏览器,微信等都可以正常播放,在小程序中无法播放,一直黑屏转,这是什么原因造成的呢?
2022-11-10放弃使用吧,直接用position: -webkit-sticky; position: sticky; 我用的时候安卓手机也非常卡,苹果没有问题。[图片]
onPageScroll滑动时,安卓反应迟钝问题- 当前 Bug 的表现(可附上截图) 当我滑动页面的时候, 在IOS上的效果为flag变化正常,view成功添加introTop样式 在Android上的效果为flag变化正常,view添加introTop错乱,有时候加不上,有时候加的上但是时间不对,有时候滑动到顶部,样式依然存在,没有给取消掉(如图三,已经滑动到最顶部了,样式依然存在) [图片] 图一 [图片] 图二 [图片] 图三 - 提供一个最简复现 Demo https://developers.weixin.qq.com/s/wdw0shmE754e
2022-09-05楼主最后怎么解决的,我们小程序用户 用华为手机,鸿蒙系统也出现了这个问题
华为鸿蒙系统打开页面,页面显示一瞬间然后就变成了空白页,体验版的调试工具都隐藏掉了,这是什么情况?这是测试手机的型号[图片][图片] (有一个未升级鸿蒙系统的华为手机打开是正常的)
2022-09-01我们小程序用鸿蒙系统也是打开空白了。楼主最后怎么解决的
鸿蒙系统打开小程序空白?[图片][图片][图片] 其他手机打开都是可以的,唯独鸿蒙系统打开时空白
2022-09-01我试了一下,苹果真机可以覆盖video
root-portal能盖住原生块吗?新增的root-portal组件能够盖住原生组件块吗?如果不能,它的意义感觉不大
2022-08-29https://blog.csdn.net/m0_55681803/article/details/123899132
获取真实的数据,时间显示NaN/NaN/NaN NaN:NaN,求大师帮忙 ?[图片] console.log(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, } wxml代码 <!--index.wxml--> <wxs src="../../utils/util.wxs" module="util"/> <view class="container"> <view class="weibo-group" wx:for="{{weibos}}" wx:key="weibos" wx:for-item="weibo"> <view class="user-group"> <image class="avatar" src="{{weibo.author.avatarUrl}}"></image> <view class="right-info"> <view class="username">{{weibo.author.nickName}}</view> <view class="detail-info"> <view class="time">{{util.timeFormat(weibo.cretae_time)}}</view> <view class="from">来自{{weibo.device}}</view> </view> </view> </view> 云函数代码: return await db.collection("weibo").add({ data:{ content:content, location:location, author:author, images:images, video:video, cretae_time:db.serverDate(), device:device } })
2022-08-01