JavaScriptの2つのDate()オブジェクトの差をどのように計算し、差の月数のみを返すのですか?
どんな助けも素晴らしいでしょう:)
「差の月数」の定義は、多くの解釈の対象となります。 :-)
JavaScriptの日付オブジェクトから年、月、日を取得できます。探している情報に応じて、これらの情報を使用して、2つの時点の間の月数を把握できます。
たとえば、オフカフの場合、これは2つの日付の間にある満月の数を見つけ、部分的な月をカウントしません(たとえば、各月を除外します)日付は次のとおりです):
function monthDiff(d1, d2) {
var months;
months = (d2.getFullYear() - d1.getFullYear()) * 12;
months -= d1.getMonth() + 1;
months += d2.getMonth();
return months <= 0 ? 0 : months;
}
monthDiff(
new Date(2008, 10, 4), // November 4th, 2008
new Date(2010, 2, 12) // March 12th, 2010
);
// Result: 15: December 2008, all of 2009, and Jan & Feb 2010
monthDiff(
new Date(2010, 0, 1), // January 1st, 2010
new Date(2010, 2, 12) // March 12th, 2010
);
// Result: 1: February 2010 is the only full month between them
monthDiff(
new Date(2010, 1, 1), // February 1st, 2010
new Date(2010, 2, 12) // March 12th, 2010
);
// Result: 0: There are no *full* months between them
(JavaScriptの月の値は0 = 1月で始まることに注意してください。)
上記の小数部の月を含めることは、通常の2月の3日間が8月の3日間(〜9.677%)よりもその月の大部分(〜10.714%)であり、もちろん2月でさえ移動目標であるため、はるかに複雑ですうるう年かどうかによります。
JavaScriptで利用可能な 日付と時刻のライブラリ もあり、おそらくこの種のことを簡単にします。
月の日を考慮しない場合、これははるかに簡単なソリューションです
function monthDiff(dateFrom, dateTo) {
return dateTo.getMonth() - dateFrom.getMonth() +
(12 * (dateTo.getFullYear() - dateFrom.getFullYear()))
}
//examples
console.log(monthDiff(new Date(2000, 01), new Date(2000, 02))) // 1
console.log(monthDiff(new Date(1999, 02), new Date(2000, 02))) // 12 full year
console.log(monthDiff(new Date(2009, 11), new Date(2010, 0))) // 1
月のインデックスは0から始まることに注意してください。これは、January = 0
およびDecember = 11
を意味します。
時には、2つの日付の間の月の量だけを取得したい場合があります。完全に時間帯は無視されます。そのため、たとえば、2013/06/21と2013/10/18の2つの日付があり、2013/06と2013/10のパーツのみに関心がある場合、シナリオと考えられる解決策は次のとおりです。
var date1=new Date(2013,5,21);//Remember, months are 0 based in JS
var date2=new Date(2013,9,18);
var year1=date1.getFullYear();
var year2=date2.getFullYear();
var month1=date1.getMonth();
var month2=date2.getMonth();
if(month1===0){ //Have to take into account
month1++;
month2++;
}
var numberOfMonths;
1. month1とmonth2の両方を除く2つの日付間の月数だけが必要な場合
numberOfMonths = (year2 - year1) * 12 + (month2 - month1) - 1;
2.月のいずれかを含める場合
numberOfMonths = (year2 - year1) * 12 + (month2 - month1);
3.両方の月を含める場合
numberOfMonths = (year2 - year1) * 12 + (month2 - month1) + 1;
2つの日付間の月数を正確に提供する関数を次に示します。
デフォルトの動作では、月単位のみがカウントされます。 3か月と1日では、3か月の差が生じます。これを防ぐには、roundUpFractionalMonths
paramをtrue
に設定します。これにより、3か月と1日の差が4か月として返されます。
上記の受け入れられた答え(T.J. Crowderの答え)は正確ではなく、時々間違った値を返します。
たとえば、monthDiff(new Date('Jul 01, 2015'), new Date('Aug 05, 2015'))
は0
を返しますが、これは明らかに間違っています。正しい違いは、1か月全体または2か月の切り上げです。
私が書いた関数は次のとおりです。
function getMonthsBetween(date1,date2,roundUpFractionalMonths)
{
//Months will be calculated between start and end dates.
//Make sure start date is less than end date.
//But remember if the difference should be negative.
var startDate=date1;
var endDate=date2;
var inverse=false;
if(date1>date2)
{
startDate=date2;
endDate=date1;
inverse=true;
}
//Calculate the differences between the start and end dates
var yearsDifference=endDate.getFullYear()-startDate.getFullYear();
var monthsDifference=endDate.getMonth()-startDate.getMonth();
var daysDifference=endDate.getDate()-startDate.getDate();
var monthCorrection=0;
//If roundUpFractionalMonths is true, check if an extra month needs to be added from rounding up.
//The difference is done by ceiling (round up), e.g. 3 months and 1 day will be 4 months.
if(roundUpFractionalMonths===true && daysDifference>0)
{
monthCorrection=1;
}
//If the day difference between the 2 months is negative, the last month is not a whole month.
else if(roundUpFractionalMonths!==true && daysDifference<0)
{
monthCorrection=-1;
}
return (inverse?-1:1)*(yearsDifference*12+monthsDifference+monthCorrection);
};
月が28、29、30、または31日であっても、月を数える必要がある場合。以下が動作するはずです。
var months = to.getMonth() - from.getMonth()
+ (12 * (to.getFullYear() - from.getFullYear()));
if(to.getDate() < from.getDate()){
months--;
}
return months;
これは回答の拡張バージョンです https://stackoverflow.com/a/4312956/1987208 ですが、1月31日から2月1日(1日)。
これは以下をカバーします。
JavaScriptの2つの日付間の月の違い:
start_date = new Date(year, month, day); //Create start date object by passing appropiate argument
end_date = new Date(new Date(year, month, day)
start_dateとend_dateの間の合計月:
total_months = (end_date.getFullYear() - start_date.getFullYear())*12 + (end_date.getMonth() - start_date.getMonth())
私はこれが本当に遅いことを知っていますが、他の人を助けるためにとにかくそれを投稿します。ここに私が思いついた関数がありますが、これは2つの日付間の月の違いを数えるのに良い仕事をしているようです。確かに、Mr.Crowderのものよりもかなり不unch好ですが、日付オブジェクトをステップスルーすることで、より正確な結果を提供します。 AS3にありますが、強力なタイピングをドロップするだけで、JSが得られます。誰でも気軽に見栄えを良くしてください!
function countMonths ( startDate:Date, endDate:Date ):int
{
var stepDate:Date = new Date;
stepDate.time = startDate.time;
var monthCount:int;
while( stepDate.time <= endDate.time ) {
stepDate.month += 1;
monthCount += 1;
}
if ( stepDate != endDate ) {
monthCount -= 1;
}
return monthCount;
}
各日付を月単位で検討し、減算して差を見つけます。
var past_date = new Date('11/1/2014');
var current_date = new Date();
var difference = (current_date.getFullYear()*12 + current_date.getMonth()) - (past_date.getFullYear()*12 + past_date.getMonth());
これにより、2つの日付の月の差が取得され、日は無視されます。
@ T.J。の答えを拡張するために、完全な暦月ではなく単純な月を探している場合は、d2の日付がd1の日付以上であるかどうかを確認できます。つまり、d2がその月の後半である場合、d1がその月の後半である場合、さらに1か月あります。したがって、これを行うことができるはずです:
function monthDiff(d1, d2) {
var months;
months = (d2.getFullYear() - d1.getFullYear()) * 12;
months -= d1.getMonth() + 1;
months += d2.getMonth();
// edit: increment months if d2 comes later in its month than d1 in its month
if (d2.getDate() >= d1.getDate())
months++
// end edit
return months <= 0 ? 0 : months;
}
monthDiff(
new Date(2008, 10, 4), // November 4th, 2008
new Date(2010, 2, 12) // March 12th, 2010
);
// Result: 16; 4 Nov – 4 Dec '08, 4 Dec '08 – 4 Dec '09, 4 Dec '09 – 4 March '10
これは、時間の問題(たとえば、3月3日の午後4時と4月3日の午後3時)を完全には考慮していませんが、より正確で、ほんの数行のコードです。
数学とクイックの2つのアプローチがありますが、カレンダーの気まぐれに左右されますが、反復的とスローですが、すべての奇妙なことを処理します(または少なくとも十分にテストされたライブラリにデリゲートを処理します)。
カレンダーを繰り返し、開始日を1か月ずつ増やし、終了日を過ぎているかどうかを確認します。これは、異常処理を組み込みのDate()クラスに委任しますが、遅くなる可能性があります多数の場合にこれを行う場合日付。ジェームズの答えはこのアプローチを取ります。私はこの考えを嫌いですが、これは「最も安全な」アプローチだと思います。one計算だけをしている場合、パフォーマンスの違いは本当に無視できます。一度だけ実行されるタスクを過剰に最適化しようとする傾向があります。
ifデータセットでこの関数を計算している場合、各行でその関数を実行したくないでしょう(またはレコードごとに複数回禁止)。その場合、ここで他のほとんどの回答のいずれかを使用できますexcept受け入れられた回答は、ちょうど間違っています(new Date()
とnew Date()
は-1)?
これは、月の長さとうるう年が異なることを考慮した、数学的で素早いアプローチの私の突き刺しです。これをデータセットに適用する場合にのみ、このような関数を使用する必要があります(この計算を何度も繰り返します)。一度だけ行う必要がある場合は、上記のジェームズの反復アプローチを使用します。これは、Date()オブジェクトに対するすべての(多くの)例外の処理を委任しているためです。
function diffInMonths(from, to){
var months = to.getMonth() - from.getMonth() + (12 * (to.getFullYear() - from.getFullYear()));
if(to.getDate() < from.getDate()){
var newFrom = new Date(to.getFullYear(),to.getMonth(),from.getDate());
if (to < newFrom && to.getMonth() == newFrom.getMonth() && to.getYear() %4 != 0){
months--;
}
}
return months;
}
ここ ループの少ない他のアプローチを使用します。
calculateTotalMonthsDifference = function(firstDate, secondDate) {
var fm = firstDate.getMonth();
var fy = firstDate.getFullYear();
var sm = secondDate.getMonth();
var sy = secondDate.getFullYear();
var months = Math.abs(((fy - sy) * 12) + fm - sm);
var firstBefore = firstDate > secondDate;
firstDate.setFullYear(sy);
firstDate.setMonth(sm);
firstBefore ? firstDate < secondDate ? months-- : "" : secondDate < firstDate ? months-- : "";
return months;
}
月の端数(日)を含む2つの日付の差を計算します。
var difference = (date2.getDate() - date1.getDate()) / 30 +
date2.getMonth() - date1.getMonth() +
(12 * (date2.getFullYear() - date1.getFullYear()));
例えば:
date1:2015/09/24(2015年9月24日)
date2:2015/11/09(2015年11月9日)
差:2.5(月)
このソリューションを検討することもできます。このfunction
は月の差を整数または数値で返します
start dateを最初または最後のparam
として渡すことは、フォールトトレラントです。つまり、関数は同じ値を返します。
const diffInMonths = (end, start) => {
var timeDiff = Math.abs(end.getTime() - start.getTime());
return Math.round(timeDiff / (2e3 * 3600 * 365.25));
}
const result = diffInMonths(new Date(2015, 3, 28), new Date(2010, 1, 25));
// shows month difference as integer/number
console.log(result);
これはうまくいくはずです:
function monthDiff(d1, d2) {
var months;
months = (d2.getFullYear() - d1.getFullYear()) * 12;
months += d2.getMonth() - d1.getMonth();
return months;
}
次のコードは、部分的な月の日数も考慮に入れて、2つの日付の間に完全な月を返します。
var monthDiff = function(d1, d2) {
if( d2 < d1 ) {
var dTmp = d2;
d2 = d1;
d1 = dTmp;
}
var months = (d2.getFullYear() - d1.getFullYear()) * 12;
months -= d1.getMonth() + 1;
months += d2.getMonth();
if( d1.getDate() <= d2.getDate() ) months += 1;
return months;
}
monthDiff(new Date(2015, 01, 20), new Date(2015, 02, 20))
> 1
monthDiff(new Date(2015, 01, 20), new Date(2015, 02, 19))
> 0
monthDiff(new Date(2015, 01, 20), new Date(2015, 01, 22))
> 0
function monthDiff(d1, d2) {
var months, d1day, d2day, d1new, d2new, diffdate,d2month,d2year,d1maxday,d2maxday;
months = (d2.getFullYear() - d1.getFullYear()) * 12;
months -= d1.getMonth() + 1;
months += d2.getMonth();
months = (months <= 0 ? 0 : months);
d1day = d1.getDate();
d2day = d2.getDate();
if(d1day > d2day)
{
d2month = d2.getMonth();
d2year = d2.getFullYear();
d1new = new Date(d2year, d2month-1, d1day,0,0,0,0);
var timeDiff = Math.abs(d2.getTime() - d1new.getTime());
diffdate = Math.abs(Math.ceil(timeDiff / (1000 * 3600 * 24)));
d1new = new Date(d2year, d2month, 1,0,0,0,0);
d1new.setDate(d1new.getDate()-1);
d1maxday = d1new.getDate();
months += diffdate / d1maxday;
}
else
{
if(!(d1.getMonth() == d2.getMonth() && d1.getFullYear() == d2.getFullYear()))
{
months += 1;
}
diffdate = d2day - d1day + 1;
d2month = d2.getMonth();
d2year = d2.getFullYear();
d2new = new Date(d2year, d2month + 1, 1, 0, 0, 0, 0);
d2new.setDate(d2new.getDate()-1);
d2maxday = d2new.getDate();
months += diffdate / d2maxday;
}
return months;
}
以下のロジックは、差を月で取得します
(endDate.getFullYear()*12+endDate.getMonth())-(startDate.getFullYear()*12+startDate.getMonth())
function calcualteMonthYr(){
var fromDate =new Date($('#txtDurationFrom2').val()); //date picker (text fields)
var toDate = new Date($('#txtDurationTo2').val());
var months=0;
months = (toDate.getFullYear() - fromDate.getFullYear()) * 12;
months -= fromDate.getMonth();
months += toDate.getMonth();
if (toDate.getDate() < fromDate.getDate()){
months--;
}
$('#txtTimePeriod2').val(months);
}
function monthDiff(date1, date2, countDays) {
countDays = (typeof countDays !== 'undefined') ? countDays : false;
if (!date1 || !date2) {
return 0;
}
let bigDate = date1;
let smallDate = date2;
if (date1 < date2) {
bigDate = date2;
smallDate = date1;
}
let monthsCount = (bigDate.getFullYear() - smallDate.getFullYear()) * 12 + (bigDate.getMonth() - smallDate.getMonth());
if (countDays && bigDate.getDate() < smallDate.getDate()) {
--monthsCount;
}
return monthsCount;
}
繁栄のために、
Moment.js を使用すると、以下を実行してこれを実現できます。
const monthsLeft = moment(endDate).diff(moment(startDate), 'month');
また、日数をカウントし、月に変換します。
function monthDiff(d1, d2) {
var months;
months = (d2.getFullYear() - d1.getFullYear()) * 12; //calculates months between two years
months -= d1.getMonth() + 1;
months += d2.getMonth(); //calculates number of complete months between two months
day1 = 30-d1.getDate();
day2 = day1 + d2.getDate();
months += parseInt(day2/30); //calculates no of complete months lie between two dates
return months <= 0 ? 0 : months;
}
monthDiff(
new Date(2017, 8, 8), // Aug 8th, 2017 (d1)
new Date(2017, 12, 12) // Dec 12th, 2017 (d2)
);
//return value will be 4 months
anyVar =(((DisplayTo.getFullYear()* 12)+ DisplayTo.getMonth())-((DisplayFrom.getFullYear()* 12)+ DisplayFrom.getMonth()));
私が使用しているものを見る:
function monthDiff() {
var startdate = Date.parseExact($("#startingDate").val(), "dd/MM/yyyy");
var enddate = Date.parseExact($("#endingDate").val(), "dd/MM/yyyy");
var months = 0;
while (startdate < enddate) {
if (startdate.getMonth() === 1 && startdate.getDate() === 28) {
months++;
startdate.addMonths(1);
startdate.addDays(2);
} else {
months++;
startdate.addMonths(1);
}
}
return months;
}