使用Laravel Collective选择输入

时间:2018-09-10 12:38:17

标签: php laravel

{!! Form::select('country',['1' => 'Albania','2'=>'Kosovo','3'=>'Germany','4'=>'France'],null, ['class'=>'form-control','placeholder'=>'Select Country']) !!}

这种类型的输入不采用数组的值,而是采用select内的option的默认值。在此处输入代码

2 个答案:

答案 0 :(得分:2)

boolean b = true;
Object result = b ? Integer.valueOf(42) : Long.valueOf(12);
System.out.println(result.getClass() + "  " + result); // class java.lang.Long  42

有关更多信息:https://laravel.com/docs/4.2/html#drop-down-lists

答案 1 :(得分:2)

根据Form Collective documentationForm::select()的第一个参数是name框的select,第二个参数是{ {1}}值,而第三个是array值(可以将其设置为input)。第四个是属性/值的可选数组。
这应该对您有用。

default