我在几个目录中有 node.js 模块,因为我遵循 MVC 模式。我需要调用位于当前目录之外的几个模块。我怎样才能做到这一点?
/app/controller/c1.js
...
/app/model/m1.js
...
/app/view/v1.js
...
/app/view/v2.js
// this works
require('./v2');
// these doesn't work
require('../model/m1.js');
require('~/model/m1.js');
...
为什么呢?