gpt4 book ai didi

node.js - 如何 promise AWS JavaScript 开发工具包?

转载 作者:IT老高 更新时间:2023-10-28 21:55:14 24 4
gpt4 key购买 nike

我想通过 Promise 在 JavaScript 中使用 aws-sdk。

而不是默认的回调样式:

dynamodb.getItem(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});

我想使用 promise风格:

dynamoDb.putItemAsync(params).then(function(data) {
console.log(data); // successful response
}).catch(function(error) {
console.log(err, err.stack); // an error occurred
});

最佳答案

AWS JavaScript SDK 的 2.3.0 版本增加了对 Promise 的支持:http://aws.amazon.com/releasenotes/8589740860839559

关于node.js - 如何 promise AWS JavaScript 开发工具包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26475486/

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