web-dev-qa-db-ja.com

日の2つの日付のTypeScriptの違い

2つの日付の差を日数で計算しようとしています。ただし、2つの日付の月が異なる場合、前月の日は破棄されます。

たとえば、開始日が3月31日で終了日が4月1日の場合、差は0になります。

HTML:

<ngb-datepicker #dp (select)="onDateSelection($event)" [displayMonths]="2" [dayTemplate]="t" outsideDays="hidden">
    </ngb-datepicker>

    <ng-template #t let-date let-focused="focused">
      <span class="custom-day"
            [class.focused]="focused"
            [class.range]="isRange(date)"
            [class.faded]="isHovered(date) || isInside(date)"
            (mouseenter)="hoveredDate = date"
            (mouseleave)="hoveredDate = null">
        {{ date.day }}
      </span>
    </ng-template>

    <p>Number of selected dates: {{DiffDate}}</p>


    <pre>From: {{ fromDate | json }} </pre>
    <pre>To: {{ toDate | json }} </pre> 

Typsriptファイル:

    import {Component} from '@angular/core';
    import {NgbDate, NgbCalendar} from '@ng-bootstrap/ng-bootstrap';

    @Component({
      selector: 'ngbd-datepicker-range',
      templateUrl: './datepicker-range.html',
      styles: [`
        .custom-day {
          text-align: center;
          padding: 0.185rem 0.25rem;
          display: inline-block;
          height: 2rem;
          width: 2rem;
        }
        .custom-day.focused {
          background-color: #e6e6e6;
        }
        .custom-day.range, .custom-day:hover {
          background-color: rgb(2, 117, 216);
          color: white;
        }
        .custom-day.faded {
          background-color: rgba(2, 117, 216, 0.5);
        }
      `]
    })
    export class NgbdDatepickerRange {

      hoveredDate: NgbDate;

      fromDate: NgbDate;
      toDate: NgbDate;
      DiffDate;
      enddate;
      startDate;

      constructor(calendar: NgbCalendar) {
        this.fromDate = calendar.getToday();
        this.toDate = calendar.getNext(calendar.getToday(), 'd', 10);
      }

      onDateSelection(date: NgbDate) {
        if (!this.fromDate && !this.toDate) {
          this.fromDate = date;
        } else if (this.fromDate && !this.toDate && date.after(this.fromDate)) {
          this.toDate = date;
        } else {
          this.toDate = null;
          this.fromDate = date;
        }
        this.enddate=new Date (this.toDate.year,this.toDate.month,this.toDate.day);

        this.startDate=new Date (this.fromDate.year,this.fromDate.month,this.fromDate.day);

        this.DiffDate=Math.floor((Date.UTC(this.enddate.getFullYear(),this.enddate.getMonth(),this.enddate.getDate())-Date.UTC(this.startDate.getFullYear(),this.startDate.getMonth(),this.startDate.getDate()) )/(1000 * 60 * 60 * 24));
        //this.DiffDate=(this.DiffDate/86400000);

      }

      isHovered(date: NgbDate) {
        return this.fromDate && !this.toDate && this.hoveredDate && date.after(this.fromDate) && date.before(this.hoveredDate);
      }

      isInside(date: NgbDate) {
        return date.after(this.fromDate) && date.before(this.toDate);
      }

      isRange(date: NgbDate) {
        return date.equals(this.fromDate) || date.equals(this.toDate) || this.isInside(date) || this.isHovered(date);
      }
    }

2日間が同じ月であれば、問題なく動作しています。

事前にご支援をよろしくお願いいたします。

更新:それを修正する方法を考えました。選択した日が月の最終日である場合を除き、すべてが期待どおりに機能しています。ライブデモは以下にあります:

デモはこちら

たとえば、開始日:3月19日、終了日:マーク21日。差は2日です。

ただし、選択した開始日が3月31日の場合、5月1日として計算されます。

何が問題になっているのでしょうか?前もって感謝します。

2

モーメントの差分関数を使用すると、これら2つの日付間の適切な1日の差分を取得できます。

this.firstDate = moment('2019/03/31');
this.secondDate = moment('2019/04/01');
this.diffInDays = Math.abs(this.firstDate.diff(this.secondDate, 'days')); 

デモについては、これ stackblitz を参照してください。

更新:

stackblitz をフォークしました。通常、2つの新しい関数を作成し、一部の重複をクリーンアップしました。

NgbDateには、年、月、日の3つのプロパティがあります。重要なことは、月が1から始まることです(JSネイティブDateオブジェクトの場合、ゼロからではありません)。NgbDateのドキュメント here を参照してください。

  private createDateFromNgbDate(ngbDate: NgbDate): Date {
    const date: Date = new Date(Date.UTC(ngbDate.year, ngbDate.month-1, ngbDate.day));  
    return date;
  }

そして、このような日数で差分を計算する別の関数:

private calcDaysDiff(): number {
    const fromDate: Date = this.createDateFromNgbDate(this.fromDate);
    const toDate: Date = this.createDateFromNgbDate(this.toDate);  
    const daysDiff = Math.floor(Math.abs(<any>fromDate - <any>toDate) / (1000*60*60*24));
    return daysDiff;
  }

更新された stackblitz を確認して、問題が解決しない場合はお知らせください。

4
robert

このコードを使用してください:

const oneday = 24 * 60 * 60 * 1000;
const momentDate = new Date(this.applicationData.businessProfile.registration_date); // Replace event.value with your date value
const formattedDate = moment(momentDate).format("YYYY-MM-DD");
const formattedDatecurrent = new Date(this.now);
this.applicationData.businessProfile.registration_date=formattedDate;
console.log(formattedDate);

console.log(formattedDatecurrent);

const Difference_In_Time = Math.round(Math.abs((Number(momentDate)  - Number(formattedDatecurrent) )/oneday));
console.log(Difference_In_Time);
0
user13024185

日付と時刻の計算には、ユーザーMoment.jsを使用します。あなたの場合、Moment.jsで差分メソッドを使用してください https://momentjs.com/docs/#/displaying/difference/

var a = moment([2007, 0, 29]);
var b = moment([2007, 0, 28]);
a.diff(b, 'days') // 1
0