gpt4 book ai didi

javascript - 在 Node 模块中使用 async - 如何返回结果?

转载 作者:行者123 更新时间:2023-12-03 05:18:36 24 4
gpt4 key购买 nike

我正在为我的公司编写一个内部 NPM 模块,以便应用程序可以与我们拥有的硬件设备进行交互,我们已经编写了一个用于与其通信的库。问题是,我尝试编写的一种方法需要异步执行。我希望该函数发送一个命令以从设备读取数据,等待它返回(设备库处理此问题),然后解析结果。我希望其他开发人员能够调用exports.getResolution() 来获取值。这是我的文件的片段以及相关部分:

var async = require('async');

exports.getResolution = async.series([
function(callback) {
board.sendAndReceive(bufferlib.generateBuffer("read", "0x00001220", "0x00000004"), (function(received) {
var hex = bufferlib.sortReceivedHex(received);
var status = parseInt('0x' + hex.substring(0, 1), 16);
var verticalResolution = parseInt('0x' + hex.substring(1, 4), 16);
var horizontalResolution = parseInt('0x' + hex.substring(5, 9), 16);
callback(null, {
'status': status,
'vertical': verticalResolution,
'horizontal': horizontalResolution
});
}));
}
],
// optional callback
function(err, results) {
status = results[0];
return results[0];
});

console.log(exports.getResolution);

我尝试过回调 hell 、Promises、bluebird、ES6 异步函数和一堆其他解决方案,但我就是无法弄清楚这个。我最近的尝试使用异步 Node 模块来尝试异步执行代码,这是有效的,但现在我只需要获取exports.getResolution来返回最终回调接收的实际值。我究竟做错了什么?我该怎么做才能使这项工作成功?谢谢。

最佳答案

尝试使异步调用同步并不是一个好主意。您需要做的是注册一个在结果存在时执行的方法。通常这些方法称为回调,但 Promise 是完成等待异步结果的更好方法。

exports.getResolution = function() {
return new Promise(function(resolve, reject) {
function receiveHandler(received) {
var hex = bufferlib.sortReceivedHex(received);
var status = parseInt('0x' + hex.substring(0, 1), 16);
var verticalResolution = parseInt('0x' + hex.substring(1, 4), 16);
var horizontalResolution = parseInt('0x' + hex.substring(5, 9), 16);

// If status would say something about it's success you could also
// use reject instead of resolve to indicate failure
resolve({
'status': status,
'vertical': verticalResolution,
'horizontal': horizontalResolution
});
}

board.sendAndReceive(bufferlib.generateBuffer("read", "0x00001220", "0x00000004"), receiveHandler);
}
}

// Usage
exports.getResolution().then(function(response) {
console.log('succesfully received response:', response);
}, function(response) {
console.log('something went wrong:', response)
});

关于javascript - 在 Node 模块中使用 async - 如何返回结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41495392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com