在有角度的前端中使用猫鼬模式

时间:2018-07-13 13:17:38

标签: node.js angular mongodb

我有很多像

的猫鼬模式
const mongoose = require('mongoose');
const Schema = mongoose.Schema;

let schema= new Schema({
    ////
});

module.exports = schema;

,而且我不想将每个模式都硬编码为我的尖角前端中的打字稿接口。 有什么方法可以使用和保持同步(当我在服务器端更改某些内容时,必须自动更改客户端)此模式在我的前端?

0 个答案:

没有答案