安装离子2 datepicker

时间:2016-10-05 23:11:19

标签: angular ionic-framework ionic2

我对离子2中的日期时间选择器有一些疑问:

1。我选择它时存储日期时间的变量是什么? 我添加了我的项目中的代码,我只是尝试将其存储在一些变量中而没有成功

import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import {DatePicker} from 'ionic-native';
import {Calendar} from 'ionic-native';
import {Platform} from 'ionic-angular';
import { Pipe } from '@angular/core';



/*
  Generated class for the InviteDates page.

  See http://ionicframework.com/docs/v2/components/#navigation for more info on
  Ionic pages and navigation.
*/
@Component({
  selector: 'page-invite-dates',
  templateUrl: 'invite-dates.html'
})
export class InviteDates {
  dateshow:any;
  newdate:any;
  d:any;
  b:any;
  year:any;
  month:any;
  day:any;
  today:Date;
  mydate: String = new Date().toISOString();


    constructor(public navCtrl: NavController,private platform:Platform) {
    this.d="";

  }

  ionViewDidLoad() {
    console.log('Hello InviteDates Page');
    this.datefun();
  }

}

html文件

    <ion-content padding>

    <ion-item>
        <ion-label>Date</ion-label>
        <ion-datetime displayFormat="DD/MM/YYYY" [(ngModel)]="mydate"></ion-datetime>
        <p> the date is :{{mydate}}</p>


    </ion-item>
</ion-content>

在我的控制台中,我收到此消息&#34; datetime object&#34;所以我想降低日期时间变量,但它显示错误 enter image description here

2.i想要3datetime:    - 当前日期的#1日期时间    - 所选日期的#2日期时间    - 用户选择的#3日期时间 怎么做?

3.我可以限制日期吗?我的意思是,用户无法从过去那里选择,例如从今天起一周。

1 个答案:

答案 0 :(得分:4)

以下是我认为您希望实现的最佳表现形式(格式和样式有限):

组件:

    @Component({
      selector: 'page-invite-dates',
      templateUrl: 'invite-dates.html'
    })
    export class HomePage {
      date1: string = new Date().toDateString();
      date2: string;

      min: string = '';
      max: string = '';

      constructor() {
        let today = new Date();
        let oneWeek = new Date();

        oneWeek.setDate(oneWeek.getDate() + 7);

        this.min = today.toISOString();
        this.max = oneWeek.toISOString();
      }
    }

查看:

<ion-content>
  <ion-item>
    {{date1}}
  </ion-item>
  <ion-item>
    <ion-label>Date</ion-label>
    <ion-datetime min="{{min}}" max="{{max}}" displayFormat="MM/DD/YYYY" [(ngModel)]="date2"></ion-datetime>
  </ion-item>
  <ion-item>
    {{date2}}
  </ion-item>
</ion-content>

有关ionic-datepicker(http://ionicframework.com/docs/v2/api/components/datetime/DateTime/

的详细信息,请参阅API

随意查找为Angular 2构建的第三方组件