我想将选定的单选按钮值作为 Laravel 路由的参数传递。
我的路线是:
Route::resource('/datas','DataController');
从这条路线,我的目标是调用 localhost:8000/datas/{data}
我的 data.blade.php 是:
<form id="dataform" action="{{ route('datas.show')}}" method="GET">
<table class="table">
<tr>
<th>Select bullet</th>
<th>SL NO</th>
<th>Name</th>
<th>Age</th>
</tr>
@foreach ($datas $key => $data)
<tr>
<td><input type="radio" id="data{{$data->id}}" name="data" value={{$data->id}}></option></td>
<td>{{$key}}</td>
<td>{{$data->name}}</td>
<td>{{$data->age}}</td>
</tr>
@endforeach
</table>
<button type="submit" id="edit_submit" class="btn btn-default">Show</button> </form>
我的表演功能将是...
public function show($id)
{
//Code to showing data and redirect to show page
}
我想获取此单选按钮的值(如下所示)。
<td><input type="radio" id="data{{$data->id}}" name="data" value={{$data->id}}>
并将其作为参数包含在下面的表单操作中
<form id="dataform" action="{{ route('datas.show')}}" method="GET">
天涯尽头无女友
阿晨1998
相关分类