使用select2,json请求和Laravel的动态下拉列表

时间:2015-05-16 07:49:31

标签: javascript php laravel laravel-5 jquery-select2

我正在尝试使用Laravel和Select2进行动态下拉。有两个下降;一个公司,即" company2"和一个属于该公司的地点,即" location2"。

对于我的生活,我无法弄清楚如何制作" company2"如果公司的位置发生了变化,请点击一下活动来阅读公司的位置!我在这段代码的javascript部分做错了什么! (其他一切都有效)

路线

Route::controller('api', 'ApiController');

控制器(ApiController)

public function getLocations($companyId)
{
    return Location::where('company_id', $companyId)->lists('id', 'name');
}

来自地址" api / locations / 7"

的示例输出
{"Yellowstone":"8"}

查看(表格打开/关闭部分省略)

{!! Form::select('company_id', $companies, null, ['class' => 'company2 form-control']) !!}
{!! Form::select('location_id', $locations, null, ['class' => 'location2 form-control']) !!}

查看(Javascript)

<script type="text/javascript">
    $(document).ready(function() {
        $(".company2").select2();
        $(".location2").select2();
    });

$(".company2").select2().on('change', function() {
    var $company2 = $('.company2');
    $.ajax({
        url:"../api/locations/" + $company2.val(),
        type:'GET',
        success:function(data) {
            var $location2 = $(".location2");
            $location2.empty();
            $.each(data, function(value, key) {
                $location2.append($("<option></option>").attr("value", value).text(key));
            }); 
            $location2.select2();
        }
    });
}).trigger('change');
</script>

视图在初始化时传递给活跃公司列表,即

$companies = Company::lists('trading_name', 'id');

2 个答案:

答案 0 :(得分:8)

用以下内容替换您的javascript,您可能需要调整一些。请务必仔细阅读评论。

var $company2 = $('.company2');
var $location2 = $(".location2");

$company2.select2().on('change', function() {
    $.ajax({
        url:"../api/locations/" + $company2.val(), // if you say $(this) here it will refer to the ajax call not $('.company2')
        type:'GET',
        success:function(data) {
            $location2.empty();
            $.each(data, function(value, key) {
                $location2.append($("<option></option>").attr("value", value).text(key)); // name refers to the objects value when you do you ->lists('name', 'id') in laravel
            });
            $location2.select2(); //reload the list and select the first option
        }
    });
}).trigger('change');

从控制器中获取位置数据时更改以下内容

public function getLocations($companyId)
{
    return Location::where('company_id', $companyId)->lists('name', 'id');
}

答案 1 :(得分:1)

你可以试试这个:

$.getJSON("getOptions.php", function (json) {
      $("#inputs").select2({
         data: json,
         width: "180px"
      });
 });

示例json输出:

    {id:0,text:"Text 1"},
    {id:1,text:"Text 2"},
    {id:2,text:"Text 3"},
    {id:3,text:"Text 4"},
    {id:4,text:"Text 5"}