skip to Main Content

Javascript – ValidationError: Collection2 validation failed: name: Path `name` is required., email: Path `email` is required., message: Path `message` is required

I have to receive message from the visitor on the website const mongoose = require("mongoose"); mongoose.connect("mongodb+srv://hello:[email protected]/") .then(() => { console.log("mongodb connected"); }) .catch(() => { console.log("failed to connect"); }); const LoginSchema = new mongoose.Schema({ name: { type: String, required: true…

VIEW QUESTION
Back To Top
Search