NodeJS替代PHP包括?

这个问题在这里已经有了答案:

  • 在Node.js中,我如何从其他文件“包含”功能? 20个答案

  • 如果只想从外部文件加载导出的对象,则可以使用require函数。

    var imported = require('your-module');
    

    如果你想直接在你的全局范围内执行外部Javascript文件(类似于PHP的include ),那么你应该使用eval

    eval(require('fs').readFileSync('your-moduleindex.js') + '');
    
    链接地址: http://www.djcxy.com/p/97013.html

    上一篇: NodeJS alternative to PHP includes?

    下一篇: How do I call .js from another .js file?