如何使用angular创建一个多模板网站-node.js-Express-MongoDB

时间:2019-05-31 16:20:59

标签: node.js angular mongodb express


我想制作多模板应用,
这意味着用户可以在个人资料中更改模板
 
我只是不知道该怎么做(我使用的是v7.x)
我对此一无所知。
我知道我必须使用这样的数据库架构(这只是一个示例):

templates {
    {
        id: 1,
        name: 'atlas',
    },
    {
        id: 2,
        name: 'zeus'
    }
}
user {
    username: 'test',
    password: 'test',
    template_id: 1
}

front : angular 
backend : node.js / express
database : mongoDB

Directories :
    client/src/app/services
    client/src/app/components/dashboard/template1
    client/src/app/components/dashboard/template2
    client/src/app/components/dashboard/template3
    etc...
Files : 
in template1 , template2 , template3 we have : 
dashboard.components.html
dashboard.components.css


并在client / src / app / components / dashboard中(上一个文件夹):
dashboard.components.ts

服务器
宁静的API

我只是写了所有这些来解释我在说什么以及我真正想知道的内容。
非常感谢男孩/女孩

0 个答案:

没有答案