gpt4 book ai didi

javascript - 我能知道一种在不提交 Angular 8 表单中的 "Confirm-Password"字段的情况下向 Firebase 提交数据的方法吗?

转载 作者:行者123 更新时间:2023-12-01 00:31:20 26 4
gpt4 key购买 nike

下面的代码显示了我的 component.ts 文件的重置功能。如何在不插入确认密码字段的情况下将数据输入到 firebase 数据库的“学生”集合中

ngOnInit() {
this.resetForm();
}
resetForm(form?:NgForm){
if(form !=null)
form.reset();
this.user={
Email:'',
Password:'',
IndexNumber:'',
ConfirmPassword:''

onSubmit(form:NgForm){
let data=form.value;
this.firestore.collection('student').add(data);
this.resetForm(form);
}

最佳答案

如果您尚未将确认密码文档添加到您的集合中,那么您只需从代码中删除确认密码行即可

ngOnInit() {
this.resetForm();
}
resetForm(form ? : NgForm) {
if (form != null)
form.reset();
this.user = {
Email: '',
Password: '',
IndexNumber: '',
ConfirmPassword: '' //Remove This

onSubmit(form: NgForm) {
let data = form.value;
this.firestore.collection('student').add(data);
this.resetForm(form);
}

关于javascript - 我能知道一种在不提交 Angular 8 表单中的 "Confirm-Password"字段的情况下向 Firebase 提交数据的方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58501801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com