表格中的表单提交按钮没有功能

时间:2018-09-30 09:40:03

标签: laravel forms submit

谁能解释我,为什么以下代码中的提交按钮否和是不会触发?

没有表,它就可以工作。

  <table class="table">
      <thead>
         <tr>
            <th scope="col">Group</th>
            <th scope="col">Yes No</th>
         </tr>
      </thead>
      @foreach($invitations as $invitation) 
       {!! Form::open(array('route'=>'store.groupentry')) !!}  
        <tbody>
         <tr>
           <td>
              Do you want to enter group {{$invitation->group_name}}?
           </td>
           <td>
              <input type="hidden" name="idgroup" value="{{ $invitation->idgroup }} "/>
              <input type="hidden" name="groupname" value="{{ $invitation->group_name }} "/>
              <button type="submit" class="btn btn-default" name = "submitbutton" value = "save">Yes</button>
              <button type="submit" class="btn btn-default" name = "submitbutton" value = "nosave">No</button>
              {{ csrf_field() }}
            </td>
          </tr>
         </tbody>
        {!! Form::close() !!}
      @endforeach 
  </table>

1 个答案:

答案 0 :(得分:0)

可能不是有效的html生成。您生成许多表格,将许多肢体包裹在一张表中。我认为您需要创建一种表单,然后再使用js提交设置的隐藏值