我有一個YYYY-MM-DD
格式的日期 - 這被定義爲this.queryDate
。這設置爲2017-04-05
Angular2日期格式化並添加一天
我想在我的系統中顯示兩個按鈕。第一個以格式5th April 2017
顯示日期。第二個按鈕應該是第二天。
actionSheet.addButton({text: this.queryDate });
actionSheet.addButton({text: [this.queryDate + 1 day] });
我不確定如何更改日期格式,然後將24小時添加到我的開始日期。我是Angular 2的新手,但這是我如何使用PHP實現的。這是我醜陋的Angular2 + PHP mongrel代碼..
actionSheet.addButton({text: date("jS M Y", strtotime(this.queryDate)) });
actionSheet.addButton({text: date("jS M Y", strtotime(this.queryDate)+(60*60*24)) });
我該如何在Angular 2中實現這一點?
太好了。謝謝 – Chris