我被困在使用财务API,但是我无法理解如何获取该信息以呈现在页面上。我需要在配置文件和平均体积中确定价格。请帮忙。
这就是我所使用的,我能够console log data.body
返回嵌套对象。
data {
symbol: 'AAPL',
profile: {
price: 291.45,
beta: '1.139593',
volAvg: '36724977',
mktCap: '1345844630130.00',
lastDiv: '2.92',
range: '142-233.47',
changes: -0.75,
changesPercentage: '(-0.25%)',
companyName: 'Apple Inc.',
exchange: 'Nasdaq Global Select',
industry: 'Computer Hardware',
website: 'http://www.apple.com',
description: 'Apple Inc is designs, manufactures and markets mobile communication and media devices and personal computers, and sells a variety of related software, services, accessories, networking solutions and third-party digital content and applications.',
ceo: 'Timothy D. Cook',
sector: 'Technology',
image: 'https://financialmodelingprep.com/images-New-jpg/AAPL.jpg'
}
}
app.post('/search', (req, res) => {
superagent.get(`https://financialmodelingprep.com/api/v3/company/profile/AAPL`).then(data => {
const companyData = data.body.map(company => new Company(company));
// console.log(data, companyData);
res.render('/search', { companyData });
}).catch(error => {
res.render('error', { error });
});
});
答案 0 :(得分:2)
您可以使用data.profile.price
访问价格,并使用data.profile.volAvg
别忘了添加其中包含的内容,在这种情况下,我猜是companyData
companyData.data.profile.price