我是nodejs.And的新手,现在我在node js中遇到了异步和同步的问题。
下面是我的代码:
var time_begin = Date.now();
console.log("begin time:" + time_begin);
arr_a = ['a', 'b', 'a', 'b', 'a', 'b']
async function iterTrans (arr_a) {
var txs_arr_tmp = [];
for(let aInfo of arr_a) {
var fs = require('fs');
if (aInfo == "a") {
fs.readFile("./debug.json", function (error_file, data_file) {
if (error_file) {
console.log(error_file)
} else {
txs_arr_tmp.push("a");
}
});
} else {
txs_arr_tmp.push("b");
}
}
return txs_arr_tmp;
}
iterTrans(arr_a).then((txs_arr_tmp) => {
var content_str = JSON.stringify(txs_arr_tmp);
console.log(content_str);
})我希望控制台将打印:
["a","b","a","b","a","b"]但实际上我得到了:
["b","b","b"]我已经学习并尝试了一些关于异步到同步的方法,但我没有在readFile中使用异步方法。
那么怎样才能得到"a","b","a","b","a","b“呢?谁能给我一些建议?
非常感谢!
发布于 2020-04-05 01:15:40
下面是我编写函数的方法。由于您的Node.js版本不支持fs.promises API,因此您可以使用util.promisify()将fs.readFile()从回调API转换为promise API,然后使用Array.prototype.map()创建promises数组并与Promise.all()并行地await readFile()调用
const fs = require('fs');
const util = require('util');
const readFile = util.promisify(fs.readFile);
const time_begin = Date.now();
console.log("begin time:" + time_begin);
const arr_a = ['a', 'b', 'a', 'b', 'a', 'b'];
async function iterTrans (arr_a) {
// array map allows parallel asynchronicity
const txs_arr_tmp_promises = arr_a.map(async aInfo => {
// use early return (to avoid nesting large blocks inside if statements)
if (aInfo !== 'a') return 'b';
// let await throw here if file error occurs
const data_file = await readFile('./debug.json');
return 'a';
});
return Promise.all(txs_arr_tmp_promises);
}
iterTrans(arr_a).then(txs_arr_tmp => {
const content_str = JSON.stringify(txs_arr_tmp);
console.log(content_str);
}).catch(error => {
// handle errors here
console.log(error);
});发布于 2020-04-05 00:57:35
您不能将某些东西异步转换为同步,但您可以让rest实现等待异步函数完成
var time_begin = Date.now();
console.log("begin time:" + time_begin);
arr_a = ['a', 'b', 'a', 'b', 'a', 'b']
async function iterTrans(arr_a) {
var txs_arr_tmp = [];
for (let aInfo of arr_a) {
const fs = require('fs').promises;
if (aInfo == "a") {
try {
await fs.readFile("./debug.json")
txs_arr_tmp.push("a");
} catch (error) {
console.log(error)
var obj_addr = {
"success": false,
"error_no": 1,
"error_info": "err with addrs"
}
return res_send.jsonp(obj_addr);
}
} else {
txs_arr_tmp.push("b");
}
}
return txs_arr_tmp;
}
iterTrans(arr_a).then((txs_arr_tmp) => {
var content_str = JSON.stringify(txs_arr_tmp);
console.log(content_str);
}) 如果fs的简化方法不可用
var time_begin = Date.now();
console.log("begin time:" + time_begin);
arr_a = ['a', 'b', 'a', 'b', 'a', 'b']
async function iterTrans(arr_a) {
var txs_arr_tmp = [];
for (let aInfo of arr_a) {
let util = require('util');
const readFile = util.promisify(require('fs').readFile);
if (aInfo == "a") {
try {
await readFile("./debug.json")
txs_arr_tmp.push("a");
} catch (error) {
console.log(error)
var obj_addr = {
"success": false,
"error_no": 1,
"error_info": "err with addrs"
}
// return res_send.jsonp(obj_addr);
}
} else {
txs_arr_tmp.push("b");
}
}
return txs_arr_tmp;
}
iterTrans(arr_a).then((txs_arr_tmp) => {
var content_str = JSON.stringify(txs_arr_tmp);
console.log(content_str);
})https://stackoverflow.com/questions/61030915
复制相似问题