Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想将来自外部文件的一些参数包含到我的 nodejs 脚本中。
和 php 一样<?php include("sql.php"); ?>
<?php include("sql.php"); ?>
这意味着:不是模块,而只是包含文件
任何想法 ?
将您的参数放入 JSON 文件将正常工作。
{"foo": "bar"}
var params = require('./params'); console.log(params.foo);
但除此之外,CommonJS 模块是您在 node.js 中的机制。如果你问这个问题,你还没有准备好eval安全使用,所以不要去那里。
eval