select2 依赖于其他字段的字段

问题描述 投票:0回答:1

我想实现本教程中的代码。

https:/backpackforlaravel.comdocs4.1crud-how-to#add-a-select2-field-that-depends-another-field。

然而,这一行返回的是 null 值。

$form = collect($request->input('form'))->pluck('value', 'name');

我不知道我是否应该使用 input('form') 在这里,因为它是从3.4版本的文档中提取的,有人知道它在4版本中是否可以工作。

CrudController:

// CRUD::field('sub_district_id')
//     ->type('select2')
//     ->label('Kecamatan')
//     ->entity('sub_district')
//     ->attribute('sub_district_name')
//     ->model('App\Models\SubDistrict')
//     ->wrapper(['class' => 'form-group col-md-6']);
CRUD::field('sub_district_id')
    ->type('relationship')
    ->label('Kecamatan')
    ->attribute('sub_district_name')
    ->include_all_form_fields(true)
    ->wrapper(['class' => 'form-group col-md-6']);
CRUD::field('village_id')
    ->type('select2_from_ajax')
    ->label('Desa/Kelurahan')
    ->entity('village')
    ->attribute('village_name')
    ->model("App\Models\Village")
    ->wrapper(['class' => 'form-group col-md-6'])
    ->data_source(url('api/village'))
    ->placeholder('Pilih Desa/Kelurahan')
    ->minimum_input_length(0)
    ->dependencies(['sub_district_id'])
    ->method('GET'); // optional - HTTP method to use for the AJAX call (GET, POST)

ApiController:

$search_term = $request->input('q');
$form = collect($request->input('form'))->pluck('value', 'name');
// dump($form);

$options = Village::query();

if (!$form['sub_district_id']) {
    return [];
}

// if a category has been selected, only show articles in that category
if ($form['sub_district_id']) {
    $options = $options->where('sub_district_id', $form['sub_district_id']);
}

if ($search_term) {
    $results = $options->where('village_name', 'LIKE', '%' . $search_term . '%')->paginate(10);
} else {
    $results = $options->paginate(10);
}

return $options->paginate(10);
php laravel backpack-for-laravel
1个回答
0
投票

试试这个

$form = collect($request->all())->get('value', 'name');

0
投票

只需将此行添加到 village的领域

->include_all_form_fields(true)

它将返回表格中的所有值。

CrudController。

// ...
CRUD::field('village_id')
    ->type('select2_from_ajax')
    ->label('Desa/Kelurahan')
    ->entity('village')
    ->attribute('village_name')
    ->model("\App\Models\Village")
    ->wrapper(['class' => 'form-group col-md-6'])
    ->data_source(url('api/village'))
    ->placeholder('Pilih Desa/Kelurahan')
    ->minimum_input_length(0)
    ->dependencies(['sub_district_id'])
    ->include_all_form_fields(true)
    ->method('GET'); // optional - HTTP method to use for the AJAX call (GET, POST)
// ...
© www.soinside.com 2019 - 2024. All rights reserved.