gpt4 book ai didi

javascript - 使用 Express Node 将 API 数据渲染到 html/handlebars

转载 作者:太空宇宙 更新时间:2023-11-04 03:17:02 25 4
gpt4 key购买 nike

我需要帮助将数据从 API 渲染到 html/handlebars。

我对如何在页面上显示数据有点困惑

这是我到目前为止所得到的:

路线文件夹/文件:

const express = require('express');
const router = express.Router();
const us_states = require('../us_state.js');
const fetch = require('node-fetch');

/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Find My Election', states: us_states });
});

/* GET Election List. */
router.post('/upcomingelections', function(req, res, next) {
fetch(`https://api.turbovote.org/elections/upcoming?district-divisions=ocd-division/country:us/state:ma,ocd-division/country:us/state:ma/place:wayland
`, {
method: 'get',
headers: { 'Accept': 'application/json' },
})
.then(res => res.json())
.then(json => console.log(json));
res.render('electionlist');
});

module.exports = router;

到目前为止,我已经发出了 get 请求并存储了数据。然后我使用 res.send 将数据发送到要渲染的 Handlebars 页面。页面上没有看到我想要的数据。我不明白我做错了什么。HTML/ Handlebars 文件:

<div class="resultcontainer">
<h1 class="resultTitle"> UPCOMING ELECTION(S)</h1>
<div id="wrapper">
<table id="keywords" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th><span>Description</span></th>
<th><span>Date</span></th>
<th><span>Registration Deadline</span></th>
<th><span>Election Level</span></th>
<th><span>Website</span></th>
</tr>
</thead>
{{#if json}}
<tbody>
<tr>
<td class="lalign"></td>
<td>{{{json.description}}}</td>
<td>{{{json.date}}}}</td>
<td>{{{json.district-divisions[0]['election-authority-level']}}}</td>
<a href={{{json.website}}}>link</a>
</tr>
</tbody>
{{else}}
<p class="empty">No upcoming election</p>
{{/if}}
</div>
</div>

最佳答案

您需要等到fetch完成后才能渲染。现在您无需等待即可进行渲染,并且不会将任何数据传递给 res.render

此外,您应该始终处理错误。将 .catch 添加到 Promise 链中,这样如果请求失败,您可以结束请求。

router.post('/upcomingelections', function(req, res, next) {
fetch(`https://api.turbovote.org/elections/upcoming?district-divisions=ocd-division/country:us/state:ma,ocd-division/country:us/state:ma/place:wayland`, {
method: 'get',
headers: {
'Accept': 'application/json'
},
})
.then(res => res.json())
.then(json => {
console.log(json);

res.render('electionlist', { json });
})
.catch(err => res.status(500).send(e.message));
});

关于javascript - 使用 Express Node 将 API 数据渲染到 html/handlebars,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55053676/

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