English 中文(简体)
如何使用另一个公用日文模块的输出变量而不再次声明这些变量?
原标题:How to use the exported variables of another commonjs module without declare them again?

假设我有一个模块 models.js :

exports.User = mongoose.model( User , UserSchema);
exports.Question = mongoose.model( Question , QuestionSchema);
exports.Answer = mongoose.model( Answer , AnswerSchema);
exports.Comment = mongoose.model( Comment , CommentSchema);

现在我想用在另一个文件里:

var models = require( ./models );
var User = models.User;
var Question = models.Question;
var Answer = models.Answer;
var Comment = models.Comment

// then use them
var user = new User();

我不得不宣布我在models.js 中定义的所有模型,这太无聊了。

是否有任何方法可以简化它, 我不需要再次宣布模型:

var models = require( ./models );

// !!! do some magic

var user = new User();
问题回答

为何你不干脆用不需要的魔法来做呢?

var models = require( ./models );
var user = new models.User();




相关问题
Benefits of declaring a function as "inline"?

Every time I read about the "inline" declaration in C it is mentioned that it is only a hint to the compiler (i.e. it does not have to obey it). Is there any benefit to adding it then, or should I ...

热门标签