我正在尝试从HTML中检索多个值,并使用req.body ..
来使用它我可以通过以下消息执行此操作:req.body.message
<form id="message-form" class="input-group input-group-lg" style="">
<input type="text" name="message" class="form-control" aria-label="Large" aria-describedby="inputGroup-sizing-sm">
<div class="input-group-prepend">
<button class="btn btn-primary">Send</button>
</div>
</form>
但是,我想从不在例如<span id="item" style="font-weight:bold"> </span>
原因是当我加载页面时,它会动态呈现这些值(从数据库中检索)。当我想进行POST时,我想使用之前渲染过的这些值。
有办法做到这一点吗?
非常感谢。
答案 0 :(得分:0)
表单不提交未出现在表单控件中的数据。
所以你可以: