ts file
dob = new FormControl('');
this.addCatForm = this.formBuilder.group({
dob:this.dob
}); / model file is /
import * as mongoose from 'mongoose';
const catSchema = new mongoose.Schema({
dob:Date
});
kindly help for not inserting date in the database.
my html file is
ts file dob = new FormControl(''); this.addCatForm = this.formBuilder.group({ dob:this.dob }); / model file is / import * as mongoose from 'mongoose'; const catSchema = new mongoose.Schema({ dob:Date });
kindly help for not inserting date in the database.