小程序
小游戏
企业微信
微信支付
扫描小程序码分享
需求是点击 ‘后一天’,日期加一天 ++ ,但是只能出发第一次,第二次点击的时不能 ++ ,这是为什么?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<view bindtap="tap">tap</view> 请排查简单demo是否正常?若正常请排查一下你的代码逻辑
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请提供下复现代码
问题怎么解决的啊 我也出现这问题了
beforeDate:function(e){
console.log(e)
var before = new Date(app.globalData.checkDay);
if(before <= new Date()){
wx.showToast({
title: '不能早于当天',
icon: 'loading',
duration: 1500,
});
return;
}
before.setDate(before.getDate() - 1);
var year = before.getFullYear();
var month = before.getMonth() + 1;
var day = before.getDate();
this.setData({
noNetwork: false,
depDateValue: year + "-" + month+"-"+day
})
},
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<view bindtap="tap">tap</view> 请排查简单demo是否正常?若正常请排查一下你的代码逻辑
请提供下复现代码
问题怎么解决的啊 我也出现这问题了
beforeDate:function(e){
console.log(e)
var before = new Date(app.globalData.checkDay);
if(before <= new Date()){
wx.showToast({
title: '不能早于当天',
icon: 'loading',
duration: 1500,
});
return;
}
before.setDate(before.getDate() - 1);
var year = before.getFullYear();
var month = before.getMonth() + 1;
var day = before.getDate();
this.setData({
noNetwork: false,
depDateValue: year + "-" + month+"-"+day
})
},