おはようございます、私は選択されたオプション(ajaxリクエストを介して取得)をjQuery select2(複数選択)に設定しようとしている間に立ち往生しています。私がコントロールを使用する場合、マルチ選択はうまく動作します。前に保存したモデルを編集する必要があるときに、前に選択したオプションのいずれも表示されないため、問題が発生します。laravel jquery select2 multiselect - 選択した要素を初期化する
これが私の見解です:
<div class="form-group {{ $errors->has('pubblicazione_giuridica_id') ? 'has-error' : ''}}">
{!! Form::label('pubblicazione_giuridica_id', 'Law Pubs', ['class' => 'col-sm-3 control-label']) !!}
<div class="col-sm-6">
{!! Form::select('pubblicazione_giuridica_id[]', [$pubGiurList], null, ['class' => 'form-control', 'id'=>'select-pgiur', 'multiple'=>'multiple']) !!}
{!! $errors->first('pubblicazione_giuridica_id', '<p class="help-block">:message</p>') !!}
</div>
のjavascript:
$('#select-pgiur').select2({
ajax: {
url: "{!! URL::to('/gare/proc-getpubgiur') !!}",
dataType: 'json',
delay: 150,
data: function (params) {
return { q: params.term, };
},
processResults: function (data, params) {
return { results: data.items, };
},
cache: true
},
language: 'it',
theme: "bootstrap",
placeholder: "Choose an option."
});
コントローラー:
public function edit($id, Request $request) {
$procedure = $this->getProcedure($id, $request, true);
if (!$procedure) {
return redirect('gare/procedure')->with('alert-warning', 'Gara non trovata - Operazione non consentita');
}
return view('gare.procedures.edit', [ 'procedure'=>$procedure, 'opChoiceList'=>$this->getOpChoiceList(), 'pubGiurList'=>json_encode(GaraPubblicazioneGiuridica::GetPubByGaraId($procedure->id)) ]);
}
モデル:
public static function GetPubByGaraId($id){
//TODO: visualizzare le selected publications
$procagg = GaraPubblicazioneGiuridica::where('gara_id','=',$id)->select('id')->get();
if($procagg){
$plucked = $procagg->pluck('nome');
$toReturn = array();
foreach($plucked as $key=>$value){
$toReturn[$key]=$value;
}
return $toReturn;
}
return "";
}
これについていくつか光を当てることができますか? ありがとうございます。