我刚刚开始学习 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'
}
我是一名优秀的程序员,十分优秀!