第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何使用javascript從mysql獲取當月數(shù)據(jù)?

如何使用javascript從mysql獲取當月數(shù)據(jù)?

縹緲止盈 2023-02-24 10:37:41
我有記錄表,只需要獲取當前月份的記錄。代碼:          let startDate = req.body.startDate          let endDate = req.body.endDate                  let result = await caseRegistration.findByDate({ pathology_id : req.body.pathology_id,                                                            created_at: {                                                                   '>=': new Date(startDate),                                                                   '<=': new Date(endDate)                                                                 }                                                           })上面的代碼我傳遞了特定的日期來獲取記錄。但我的要求是如果請求沒有任何日期,那么我只想獲取當前月份的數(shù)據(jù)。你能幫我么?
查看完整描述

2 回答

?
慕絲7291255

TA貢獻1859條經(jīng)驗 獲得超6個贊

var date = new Date(); 


var firstDay = new Date(date.getFullYear(),date.getMonth(), 1);  

                

var lastDay = new Date(date.getFullYear(),date.getMonth(), daysInMonth(date.getMonth()+1, 

                        date.getFullYear())); 


firstDay=>Tue Sep 01 2020 00:00:00 GMT+0530 (India Standard Time) 

 

lastDay=> Wed Sep 30 2020 00:00:00 GMT+0530 (India Standard Time)

請注意您想要的時區(qū)和日期(可以是任何時間)


查看完整回答
反對 回復 2023-02-24
?
楊__羊羊

TA貢獻1943條經(jīng)驗 獲得超7個贊

如果 startDate 和 endDate 為空,請使用以下命令查找當月的第一個日期和最后一個日期:


var date = new Date();

var firstDateOfCurrentMonth = new Date(date.getFullYear(), date.getMonth(), 1);

var endDateOfCurrentMonth = new Date(date.getFullYear(), date.getMonth() + 1, 0);

現(xiàn)在您可以將這些日期分配給 startDate 和 endDate


statDate=firstDateOfCurrentMonth;  

endDate=endDateOfCurrentMonth;


查看完整回答
反對 回復 2023-02-24
  • 2 回答
  • 0 關注
  • 109 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號