更新:我在写入文件后添加了一个短暂的暂停,直到那时 shell 命令才起作用。
async function testRun() {
await createInsertCurlReq.createInsertCurlReq(process.argv[2]);
await timeout(3000);
shell.chmod("+x", "./curl.sh");
shell.exec("./curl.sh");
}
}
原始问题
我的.then()
块后createInsertCurlReq.createInsertCurlReq(process.argv[2])
没有运行。我应该如何重写它才能做到这一点?我注意到如果我不删除文件而只是追加到,脚本就会运行。
async function testRun() {
if (fs.existsSync('./curl.sh')) {
shell.rm('-rf', './curl.sh');
}
createInsertCurlReq.createInsertCurlReq(process.argv[2]).then(() => {
shell.chmod('+x', './curl.sh');
shell.exec('./curl.sh')
return
})
}
}
curlCreation.js
function createInsertCurlReq(filePath) {
return utils
.readJSONFileOnDisk(filePath)
.then(data => {
obj = JSON.parse(data);
let resultArr = [];
for (let key in obj) {
for (let innerKey in obj[key]) {
let arrayNew = {};
arrayNew[key] = obj[key][innerKey].resolved;
resultArr.push(arrayNew);
}
}
return resultArr;
})
.then(data => {
if (!fs.existsSync("./curl.sh")) {
shell.touch("./curl.sh");
}
return data;
})
.then(data => {
for (let i = 0; i < data.length; i++) {
for (let key in data[i]) {
fs.appendFile(
"curl.sh",
`curl -X POST -H "xxx",
function(err) {
if (err) throw err;
}
);
}
}
});
}
module.exports = { createInsertCurlReq: createInsertCurlReq };