简体   繁体   中英

Getting the selected value from Dropdown list in Laravel

I am working my application with Laravel. Please I created in my view a dropdownlist :

<div class="form-group">
        {{ Form::label('Type', 'Type') }}
        {{ Form::select('Select_id', $profiles, Input::old('Select_id')) }}
     </div>

I want now to get the selected value after the user selects it from the list. Thanks for your help.

Based on your comment above, it's fairly straight forward to retrieve the value from the select. In the controller method that handles the route this form is posted to simply use:

$input = Input::get(); or $input = Input::all();

This will retrieve all input values as an array of key/value pairs, with the key being the name of your field/input. If you have set the names of the inputs to match the column names in your database, then you're good to go.

You can also just retrieve the select value on it's own using:

$selectId = Input::get('Select_id'); or $selectId = Input::only('Select_id');

If you wanted to get all input except for the 'Select_id' field, you can use:

$input = Input::except('Select_id');

Once you have your input, you can then use this to create a record in your database.

you need to specify that you want to keep those old inputs. you can do in two ways:

  • Input::flash(); within the controller
  • call the view with ->withInput()

you don't need to pass Input::old('Select_id') to the Form::select , since the Form classes take advantage of Input::old themselves and automatically select the right value.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM