- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Nodejs 新手,第一次处理 Promise,所以现在的上下文是当我尝试返回 Promise 时,它显示状态 Promise 。如何解决这个问题有人可以指导我吗?
这是我调用将返回 promise 的函数的代码。粗体线显示我想要返回该 promise 并将其存储在对象中的位置。
for(let i = 0; i<responseArray.length; i++){
let dollar = {
amount : 0
};
if(i == 1){
continue;
}
dollar.amount = **currenciesService.getCurrencyLatestInfo(responseArray[i].currency);**
dollarAmount.push(dollar);
}
console.log("$", dollarAmount);
这是返回 promise 的代码。
const getCurrencyLatestInfo = function(currency) {
return new Promise(function(resolve, reject) {
request('https://min-api.cryptocompare.com/data/price?fsym='+currency+'&tsyms='+currency+',USD', { json: true }, (err, res, body) =>
{
if (err) {
reject(err);
} else {
var result= body;
resolve(result);
console.log("RESULT: ",result.USD);
}
});
})
}
最佳答案
您需要等待这些 promise 解决,然后才能使用解决的值
这是对循环的一个小重写,应该可以工作
let promises = [];
for(let i = 0; i<responseArray.length; i++){
if(i == 1){
continue;
}
let dollar = currenciesService.getCurrencyLatestInfo(responseArray[i].currency)
.then(amount => ({amount})); // do you really want this?
promises.push(dollar);
}
Promise.all(promises)
.then(dollarAmount =>console.log("$", dollarAmount))
.catch(err => console.error(err));
这应该会产生一个类似于 [{amount:123},{amount:234}]
的数组,正如您的代码所期望的那样
上面也可以简化为
Promise.all(
responseArray
.filter((_, index) => index != 1)
.map(({currency}) =>
currenciesService.getCurrencyLatestInfo(currency)
.then(amount => ({amount})) // do you really want this?
)
)
.then(dollarAmount =>console.log("$", dollarAmount))
.catch(err => console.error(err));
注意:您的原始代码建议您希望结果采用 {amount:12345}
的形式 - 当您想要 console.log("$", .... ) ...因为控制台输出类似于
$ [ { amount: 1 }, { amount: 0.7782 } ]
当然给出两个结果 - 看不到你的 responseArray
所以,我只是猜测
关于javascript - 返回 Promise 说 Promise Pending,Node js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49216051/
因此控制台中的结果显示为 - Promise { } ' why is it still pending?' [ { _id: 5a7c6552380e0a299fa752d3, username:
据我所知,这两种设置都做同样的事情:当请求在待处理队列中花费的时间超过该设置所说的时间时,启动一个新实例。 The maximum amount of time that App Engine sh
我在进行 Entity Framework 代码优先迁移时经常遇到以下情况。我添加了一些迁移,并成功地用它们更新了数据库。稍后,当我希望添加新的迁移时,Add-Migration命令会提示其“无法生成
就我而言,我能够获取 token ,但不是我想要的方式,即我不想打印待处理的 promise ,并且在 tokenDisp.js 中运行后的输出是: output: Promise { pending
async function db(path){ const res = await fetch('data.json'); const data = await res.json();
我有一个具有PV,Service和2 Pod statefulset(包括动态PVC)的文件。 部署文件时,PVC状态发生了问题。 # kubectl get pvc NAME
我在 Azure 数据工厂服务中创建了一些管道,以将数据从 SQL 表移动到 Azure 表。但他们从不开始运行。相反,即使在我单击 Azure 门户中的运行 按钮后,源数据集仍然处于待验证状态。我已
将新的开发人员添加到启用沙盒的应用程序会在受邀的 Facebook 用户旁边显示“待处理”,并且用户永远不会收到确认电子邮件或任何允许他确认将自己添加为开发人员的信息。以前有没有人遇到过这个问题。我发
我在我的网上商店中集成了 PayPal,以便通过自动产品交付实现即时付款(之前已经有过,但仅限于通过 sofort.com 进行即时电汇)。我在 PayPal 提供的示例的帮助下集成了它(我使用的是
我有一个运行前台服务的应用程序。该应用程序有一个启动/停止按钮作为其通知的一部分,可以猜到启动和停止前台服务。单击开始按钮后,将触发一个待处理的 Intent。 考虑以下场景: 应用程序已被销毁[从最
所以, 我对 JBehave 有一种奇怪的行为。我有一个场景,我需要一个 StepDef 结构,如下所示: Given some precondition When something happens
我以前从未遇到过这样的事情,所以我希望其他人能够向我解释一下。 我正在开发一个包含一些 Adsense 横幅的网站。为了防止它们出现在我的本地主机或任何测试帐户上,我创建了一些服务器端代码来生成和
我正在学习散列字符串密码并将它们存储在对象列表中。 const bcrypt = require('bcrypt') var users = [] async function hashPass(pa
我正在遵循 Fedora 入门指南 ( https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-start
我有一个更新密码功能,可以更新用户的密码并删除生成的一次性 URL。目前,它向前端和变量 updatedResult 返回空响应。说 promise 待定,所以这似乎是空响应的问题。当我执行代码时,这
我在使用 cert-manager 处理 tls 证书时遇到了问题,我正在关注文档并添加了一些额外内容以使用 Traefik作为入口。 目前,我有这个 YAML文件: cluster-issuer.y
我正在创建一个简单的辅助函数,它使用bcrypt返回给定密码的哈希值。但每次我调用该函数时,它都会解析为 Promises { }我做错了什么? const saltPassword = async
这个问题已经有答案了: How do I return the response from an asynchronous call? (42 个回答) 已关闭 4 年前。 JS 新手,我正在尝试理解
我正在为一个项目构建一个 CRUD 应用程序,人们可以添加查看和删除条目,我为此使用nodejs、js 和 fireabse。我有这样的 firestore 数据库结构: entries: --
我的服务器端有以下代码: // Bind to a specific local port number (SERVER_PORT) and any local IP address. m_tlSer
我是一名优秀的程序员,十分优秀!