-1
const mongoose = require('mongoose');
const schema = mongoose.schema;
const marioCharSchema = new schema({
name: String,
weight: Number
});
const marioChar = mongoose.model('marioChar', marioCharSchema);
module.exports = marioChar;
こんにちは、モハメド、私は、StackOverflowへようこそ。あなたの質問は何ですか?また、[How to Ask](https://stackoverflow.com/help/how-to-ask)を読んでください。 –
Typo。それは 'mongoose.Schema'だ –