Chắc chắn là có thể ... - đề xuất sử dụng express làm khung máy chủ:
import mongoose from 'mongoose';
import { Router } from 'express';
const router = Router();
router.post('/newModel/', createNewModel);
function createNewModel(req, res, next) {
const Schema = mongoose.Schema;
// while req.body.model contains your model definition
mongoose.model(req.body.modelName, new Schema(req.body.model));
res.send('Created new model.');
}
... nhưng hãy cẩn thận! Mở ra một cách để người dùng sửa đổi cơ sở dữ liệu của bạn một cách dễ dàng thường không phải là một ý kiến hay.
Cập nhật: Định dạng hoàn toàn giống với định dạng bạn muốn có trong dấu ngoặc đơn:
{
"title": { "type": "String", "required": "true" },
"content": { "type": "String", "required": "true" },
"slug": { "type": "String", "required": "true" }
}