gpt4 book ai didi

html - 从 bodyParser 获取身份不明

转载 作者:太空宇宙 更新时间:2023-11-04 01:20:04 38 4
gpt4 key购买 nike

我刚刚开始学习 Nodejs + Express + Handbars,我的帖子遇到了困难。这是我收到的请求正文,我似乎无法使用 req.body.province 和 req.body.municipality 获取“省和市”数据,但通过轴承,我可以。

{
'province ': 'ALBAY',
'municipality ': 'BACACAY',
bearing: '>=1 and <=20'
}

这就是我从市和省表单中获取数据的方法。

<div class="form-group">
<label for='municipality'>Municipality</label> <select type= "text" name="municipality " class="form-control"> {{#each municipality}}
<option>{{municipality}}</option>
{{/each}} </select>

这是用于轴承的。

<div class="form-group">
<label for="bearing">Bearing Trees</label> <select type="text" name="bearing" class="form-control">
<option>>=1 and <=20</option>
<option>>=21 and <=50</option>
<option>>=51 and <=100</option> <option>>100</option> </select> </div>

我现在有点陷入困境,需要你的帮助。谢谢

最佳答案

据我所知,与市和省相对应的键末尾包含一个空格。

在对象内部,所有键都是字符串类型,这意味着除非您使用符号,否则包含空格。

对于你的问题来说,这更像是一个拼写错误。

你的对象应该是这样的:

{
province: 'ALBAY',
municipality: 'BACACAY',
bearing: '>=1 and <=20'
}

关于html - 从 bodyParser 获取身份不明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59613919/

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