爬坑小程序

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---
(完)
python Flask request 获取多文件
使用request.files.getlist('')
git reset 三个参数
git reset [--soft | --mixed | --hard] [HEAD]
一本书读懂财报--利润表
利润表解读
春节那点事
对象那点事ヽ(ー_ー)ノ
Vue 插槽
感觉不方便ヽ(ー_ー)ノ
生活二三事
就想记录下当前的状况吧
等待你的评论