我希望从我的视图中获取我的选择下拉列表的值到我的控制器
有什么方法可以得到这个吗? :(
这是我的下拉视图
{{ Form::select('status', ['All', 'Absent', 'Late', 'Others']) }}
这是我想要调整所选值的地方
public function filterSummaryStudent()
{
if(Input::has('status') == 'All')
{
(other codes here)
}
当我打电话给我时,我一直在得到一个空白页面..请帮助。谢谢!
答案 0 :(得分:0)
如果要将值检查为字符串,则必须将select下拉列表的值指定为关联数组。现在您的选择下拉代码使用数组的数字索引定义该值。当你检查Input :: has('status')=='All'时,laravel当然会返回false。
您的代码
{{ Form::select('status', ['All', 'Absent', 'Late', 'Others']) }}
HTML输出
<select name="status">
<option value="0">All</option>
<option value="1">Absent</option>
<option value="2">Late</option>
<option value="3">Others</option>
</select>
更正代码
{!! Form::select('status', ['All' => 'All', 'Absent' => 'Absent', 'Late' => 'Late', 'Others' => 'Others']) !!}
HTML输出
<select name="status">
<option value="all">All</option>
<option value="absent">Absent</option>
<option value="late">Late</option>
<option value="others">Others</option>
</select>
如果你像上面的代码那样写,你可以像这样检查选择下拉列表。
if(Input::has('status') == 'All') {
// Your code
}