當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Moment.date方法代碼示例

本文整理匯總了TypeScript中moment.Moment.date方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Moment.date方法的具體用法?TypeScript Moment.date怎麽用?TypeScript Moment.date使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在moment.Moment的用法示例。


在下文中一共展示了Moment.date方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: setFirstPaymentDate

 function setFirstPaymentDate (firstPaymentDate: Moment): object {
   return {
     day: firstPaymentDate.date(),
     month: firstPaymentDate.month() + 1,
     year: firstPaymentDate.year()
   }
 }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:7,代碼來源:payment-plan.ts

示例2: it

 it('should render page with error when DOB is less than 18', async () => {
   draftStoreServiceMock.resolveFind('claim')
   const date: Moment = MomentFactory.currentDate().subtract(1, 'year')
   await request(app)
     .post(ClaimPaths.claimantDateOfBirthPage.uri)
     .set('Cookie', `${cookieName}=ABC`)
     .send({ known: 'true', date: { day: date.date(), month: date.month() + 1, year: date.year() } })
     .expect(res => expect(res).to.be.successful.withText('Please enter a date of birth before', 'div class="error-summary"'))
 })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:9,代碼來源:claimant-dob.ts

示例3: removeHoursAndMinutes

  private static removeHoursAndMinutes(dateTime: Moment): Moment {
    const date = moment(new Date(
      dateTime.year(),
      dateTime.month(),
      dateTime.date()
    ))

    return date
  }
開發者ID:janaagaard75,項目名稱:FilmFilter,代碼行數:9,代碼來源:ImmutableDate.ts

示例4: dataToSend

 function dataToSend (firstPaymentDate: Moment): object {
   return {
     totalAmount: 100,
     instalmentAmount: 50,
     firstPaymentDate: {
       day: firstPaymentDate.date(),
       month: firstPaymentDate.month() + 1,
       year: firstPaymentDate.year()
     },
     paymentSchedule: 'EVERY_MONTH'
   }
 }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:12,代碼來源:payment-plan.ts

示例5: date

 public date(): number {
   return this.moment.date()
 }
開發者ID:janaagaard75,項目名稱:FilmFilter,代碼行數:3,代碼來源:ImmutableMoment.ts


注:本文中的moment.Moment.date方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。