爬坑小程序

Snipaste_20210416_090826.jpg

清除button默认样式

          
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
.clearButtonStyle{ margin: 0; padding: 0; background-color: transparent!important; line-height: 1; border-radius: 0!important; } .clearButtonStyle::after { border: none; }

小程序多张image图片排列有空隙解决方案

          
  • 1
  • 2
  • 3
在image组件style中添加以下flex: <image style='width:100%;display:flex' mode='widthFix' ></image>

时间转时间戳

日期转换成时间戳:new Date('2018-09-03 15:46:13').getTime()

示例代码:

          
  • 1
console.log(new Date('2018-09-03 15:46:13'))

这个打印结果应该是时间戳,但是部分机型会返回 undefined 或者 Invalid date;

解决方法:

          
  • 1
console.log(new Date('2018-09-03 15:46:13'.replace(/-/g,"/")))

意思是把 2018-09-03 15:46:13 改为 2018/09/03 15:46:13

最后:

          
  • 1
console.log(new Date('2018-09-03 15:46:13'.replace(/-/g,"/")).getTime())

微信小程序scroll-view隐藏滚动条,部分安卓机仍然出现灰色滚动条的隐藏方式

Snipaste_20210202_173023.jpg
---end---
(完)
韭菜成长记4
慢慢研究,谨慎买入,机会无处不在
Qv2ray安装和使用
膜拜大神们
云边有个小卖部
听了 向云端 这首歌,看好多评论《云边有个小卖部》的,花了几小时去看了这本书
x-ui使用Vless-TCP-XTLS-Vision
不畏浮云遮望眼 · 金睛如炬耀苍穹
Python 获取IP地址并通过IP查询归属地
获取ip,通过ip-api接口查询归属地,代理改变自己的归属地
Docker基本操作
一些基本操作,指令
等待你的评论