尝试设置一个表单,但由于某种原因,尽管使用了[(ngModel)] ,我的 html 中的 Date 输入并没有绑定到对象的 Date 值
Html:
<input type='date' #myDate [(ngModel)]='demoUser.date'/><br>
表格组件:
export class FormComponent {
demoUser = new User(0, '', '', '', '', new Date(), '', 0, [], []);
}
用户类别:
export class User {
constructor (
public id: number,
public email: string,
public password: string,
public firstName: string,
public lastName: string,
public date: Date,
public gender: string,
public weight: number,
public dietRestrictions: string[],
public fitnessGoals: string[]
){
}
}
测试输出显示当前的“ new”Date 作为对象的值,但输入不更新 User 对象的 Date 值或反映该值,表明双向绑定都不起作用。非常感谢你的帮助。