标签: node.js angular mongodb
我有很多像
const mongoose = require('mongoose'); const Schema = mongoose.Schema; let schema= new Schema({ //// }); module.exports = schema;
,而且我不想将每个模式都硬编码为我的尖角前端中的打字稿接口。 有什么方法可以使用和保持同步(当我在服务器端更改某些内容时,必须自动更改客户端)此模式在我的前端?