如何通过检查当前日期起 30 天内的日期来计算我的商品数量?
以下是我需要在 30 天内为商品添加的当前代码
**New Item within 30 days :**
row Item Category Date Description {{ user.index }} {{ user.item_id }} {{ user.category_id }} {{ user.r_date }} {{ user.description }}
请帮忙,因为我正在尝试了解有关 Vue 的更多信息,并且对它和打字稿还很陌生。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
您可以为此使用计算属性并将其连接到计算天数的函数。例如
let date_1 = new Date('10/25/2021'); let date_2 = new Date(); function numOfDaysBtn(date_1, date_2) { let difference = date_1.getTime() - date_2.getTime(); let TotalDays = Math.ceil(difference / (1000 * 3600 * 24)); return TotalDays; } console.log(numOfDaysBtn(date_1, date_2) + " days in between");