使用fs节点动态生成一个js文件
generate a js file dynamically using fs node
我正在尝试通过 运行 节点脚本生成 .js 文件。这是我的代码。
const dynamicCode = [
{
"ClassCode" : "9620",
"Rate" : 0.99,
"IsActive" : "TRUE",
"StartDate" : "2021-10-19T17:00:00.000-07:00",
"EndDate" : "9999-12-30T16:00:00.000-08:00"
},
{
"ClassCode" : "0038",
"Rate" : 12.19,
"IsActive" : true,
"StartDate" : "2021-05-31T17:00:00.000-07:00",
"EndDate" : "9999-12-30T16:00:00.000-08:00"
}
]
const bdCode = module.exports = {
async up(db, client) {
await db.collection('Configuration_Lookup').deleteMany();
await db.collection('Configuration_Lookup').insertMany(dynamicCode)
},
async down(db, client) {
// TODO write the statements to rollback your migration (if possible)
// Example:
// await db.collection('albums').updateOne({artist: 'The Beatles'}, {$set: {blacklisted: false}});
}
};
fs.writeFileSync("bds.js", JSON.stringify(bdCode, null, 2), 'utf-8');
虽然这适用于包含简单文本或不可执行代码(如 json 对象)的 .txt 文件。它在 运行 writeFileSync 函数之前执行。所以插入到js文件中的数据是
{}
我们如何生成一个包含工作代码的js文件
我通过以下代码解决了这个问题。
const dynamicCode = [
{
"ClassCode" : "9620",
"Rate" : 0.99,
"IsActive" : "TRUE",
"StartDate" : {"$date": "2021-10-19T00:00:00Z"},
"EndDate" : {"$date": "9999-12-30T23:59:59Z"}
},
{
"ClassCode" : "0038",
"Rate" : 12.19,
"IsActive" : true,
"StartDate" : {"$date": "2021-10-19T00:00:00Z"},
"EndDate" : {"$date": "9999-12-30T23:59:59Z"}
}
]
const bdCode = `module.exports = {
async up(db, client) {
await db.collection('Configuration_Lookup').deleteMany();
await db.collection('Configuration_Lookup').insertMany(${JSON.stringify(dynamicCode, null, 2)})
},
async down(db, client) {
// TODO write the statements to rollback your migration (if possible)
// Example:
// await db.collection('albums').updateOne({artist: 'The Beatles'}, {$set: {blacklisted: false}});
}
};`
fs.writeFileSync("bds.js", bdCode);
您可以 运行 通过使用 Function 构造函数从代码创建一个函数,将代码作为字符串。
const code = "let x = 100; console.log(x + 1)";
const run = new Function(code);
run();
使用子进程将此字符串写入 JS 文件和 运行 js 文件。
我正在尝试通过 运行 节点脚本生成 .js 文件。这是我的代码。
const dynamicCode = [
{
"ClassCode" : "9620",
"Rate" : 0.99,
"IsActive" : "TRUE",
"StartDate" : "2021-10-19T17:00:00.000-07:00",
"EndDate" : "9999-12-30T16:00:00.000-08:00"
},
{
"ClassCode" : "0038",
"Rate" : 12.19,
"IsActive" : true,
"StartDate" : "2021-05-31T17:00:00.000-07:00",
"EndDate" : "9999-12-30T16:00:00.000-08:00"
}
]
const bdCode = module.exports = {
async up(db, client) {
await db.collection('Configuration_Lookup').deleteMany();
await db.collection('Configuration_Lookup').insertMany(dynamicCode)
},
async down(db, client) {
// TODO write the statements to rollback your migration (if possible)
// Example:
// await db.collection('albums').updateOne({artist: 'The Beatles'}, {$set: {blacklisted: false}});
}
};
fs.writeFileSync("bds.js", JSON.stringify(bdCode, null, 2), 'utf-8');
虽然这适用于包含简单文本或不可执行代码(如 json 对象)的 .txt 文件。它在 运行 writeFileSync 函数之前执行。所以插入到js文件中的数据是
{}
我们如何生成一个包含工作代码的js文件
我通过以下代码解决了这个问题。
const dynamicCode = [
{
"ClassCode" : "9620",
"Rate" : 0.99,
"IsActive" : "TRUE",
"StartDate" : {"$date": "2021-10-19T00:00:00Z"},
"EndDate" : {"$date": "9999-12-30T23:59:59Z"}
},
{
"ClassCode" : "0038",
"Rate" : 12.19,
"IsActive" : true,
"StartDate" : {"$date": "2021-10-19T00:00:00Z"},
"EndDate" : {"$date": "9999-12-30T23:59:59Z"}
}
]
const bdCode = `module.exports = {
async up(db, client) {
await db.collection('Configuration_Lookup').deleteMany();
await db.collection('Configuration_Lookup').insertMany(${JSON.stringify(dynamicCode, null, 2)})
},
async down(db, client) {
// TODO write the statements to rollback your migration (if possible)
// Example:
// await db.collection('albums').updateOne({artist: 'The Beatles'}, {$set: {blacklisted: false}});
}
};`
fs.writeFileSync("bds.js", bdCode);
您可以 运行 通过使用 Function 构造函数从代码创建一个函数,将代码作为字符串。
const code = "let x = 100; console.log(x + 1)";
const run = new Function(code);
run();
使用子进程将此字符串写入 JS 文件和 运行 js 文件。