选择日期的时候年份下发时减一,如:选择2017-10-10,实际得到的日期是2016-10-10,detail打印的日期也是2016-10-10
你好,
这个问题是在微信开发者工具上出现的,我选择iPhone5,6,7测试都有这个问题,没在真实手机上测试过,
微信开发者工具版本:0.20.191900,联想笔记本,系统是win10,这个问题一直存在,还没找到解决的方法。
代码:
wxml
<picker class=“date_select” style=“width: 100%; height: 300px;” value="{{date}}" mode=“date” fields=“day” start=“2000-01-01” bindchange=“binddatechange”>
<view class=“date_set”>选择配送日期:{{date}}</view>
</picker>
js
binddatechange:function(e){
this.setData({
date:e.detail.value
});
},
wxss
.date_set{
font-size:16px;
background: #C0C0C0;
}