有没有办法读取后端复选框的表单值

gk7wooem  于 2021-09-23  发布在  Java
关注(0)|答案(0)|浏览(198)
<form>
<table class="tableheight" id="customers">
           <tbody style='height:270px;display:block;overflow:auto;width:286px'>
           <tr>
            <th style="  border-top-left-radius: 10px;">Add a Friend</th>
            <th style="  border-top-right-radius: 10px;text-align:center;"><i style="color:green;font-size:25px;background-color:white;" class="fas fa-check-circle"></i></th>
            </tr>
            <% if(friend.length==0){ %>
           <h2> No Bookmarks Added Yet! </h2>
             <% } %>
             <% friend.forEach(function(f,i){ %>
             <tr>
              <td style="padding-right:110px;"><%= f.name %></td>
              <td style="text-align:center;"><input type="checkbox" name="<%= f.name %>">
              </td>
               </tr>
               <% }) %>
            </tbody>
              </table>
     </div>
    </form>

无法在后端读取表单的数据。有没有办法读懂它?我已经尝试过req.body.cur,其中cur是<%=f.name%>的值。问题只存在于friend.foreach循环中

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题