在我的 Angular 应用程序模板驱动表单中,我有一个出生日期字段,并为给定的字段添加了 ngbDatepicker。
<input #dob="ngbDatepicker"
(click)="dob.toggle()"
[(ngModel)]="model.dob"
[ngClass]="{ 'is-invalid': f.submitted && dob.invalid }"
class="form-control"
id="dob"
name="dob"
required
type="text"
[disabled]="isDisabled"
[class.ash]="isDisabled"
[class.highlight]="!isDisabled"
ngbDatepicker
/>
我正在获取后端 API 的出生日期,dob: "2019-02-16 00:00:00"
并且我想像下面这样传递该值,
{
"year": 2019,
"month": 2,
"day": 26
}
因为 ngbDatepicker 以该格式获取值。这就是我试图转换我的出生日期的原因。
toDate(dob) {
const [year, month, day] = dob.split('-');
const obj = { year: year, month: month, day: day.split(' ')[0].trim() };
console.log('convert date', obj);
this.model.dob = obj;
// this.model.dob ={year: 2017, month: 5, day: 13};
}
输出是{year: "2019", month: "02", day: "16"}
,我想从此输出中删除引号。我已经尝试了很多方法,但无法获得所需的输出。我可以{"year": 2019, "month": 02, "day": 16}
使用下面的代码得到这个输出。
JSON.stringify({ "year": "2019", "month": "2", "day": "26" }, (key, value) => !isNaN(+value) ? +value : value);
但是要设置日期,我需要像这样设置对象。{year: 2019, month: 2, day: 26 }