我想将值从控制器发送到ejs文件,而无需在ejs中输入时重新加载页面。这是 ejs 文件中的代码。
<html>
<p class="topicCard3">History Of PM2.5 Values In <%= country %></p>
<form method="POST" action="/historyPM2.5">
<input class="inputCountry" name='country' placeholder="enter country name">
<button class="submitButton">SUBMIT</button>
</form>
<p>
<html>
这是控制器中的代码.js
exports.historyPm = function(req,res) {
country = req.body.country
res.render('home',{
'country': country
})
}
我需要在控制器中处理一些东西,然后将结果发送到ejs进行显示。现在,我将值输入从ejs发送到控制器,然后单击summit按钮,页面将重新加载。感谢您的帮助。
莫回无
繁花不似锦
相关分类