这不是一个具体的应用程序/代码问题,它只是关于常见的应用程序架构。
我试图了解组织我的猫鼬应用程序的正确方法。由于我是猫鼬的新手,所以我现在就是这样做的:
核心/settings.js
var mongoose = require('mongoose');
exports.mongoose = mongoose;
mongoose.connect('mongodb://localhost/blog');
exports.db = mongoose.connection;
核心/models.js
settings = require("./settings");
// post schema
var postSchema = settings.mongoose.Schema({
header: String,
author: String,
text: String
})
//compiling our schema into a Model
exports.post = settings.mongoose.model('post', postSchema)
核心/db-layer.js
settings = require("./core/settings");
models = require("./core/models");
exports.function = createAndWriteNewPost(function(callback) {
settings.db.on('error', console.error.bind(console, 'connection error:'));
settings.db.once('open', function callback() {
new models.post({
header: 'header',
author: "author",
text: "Hello"
}).save(function(err, post) {
callback('ok');
});
});
});
路线/post.js
db = reqiure("../core/db.js")
exports.get = function(req, res) {
db.createAndWriteNewPost(function(status){
res.render('add_material', {
//blah blah blah
});
});
};
应用程序.js
var post = require ('routes/post.js')
...
app.get('/post', post.get);
因此,这段代码被极度简化(甚至没有经过测试)只是为了展示我当前的架构思想。它不是一个具体的应用程序,就像创建一个抽象的博客文章一样。这就是它的工作原理:
app.js --> routes/post.js <--> core/db-layer.js
|
v
core/models.js <--> core/settings.js
这对我来说似乎有点多余。你能建议更优化的应用程序结构吗?谢谢。