0

私のLaravelプロジェクトには、ドロップダウンリストからブランチを選択した後、患者が医師を選択できる予約フォームがあります。機能を実行するために AJAX を使用します。

検証が失敗した後、すべてのフォーム値が復元され、医師を受け入れます。

しかし、検証が失敗した後、選択した医師を自動的に復元したいと考えています。

htmlフォーム

<select class="form-control appointment_form_searchField"  id="appointment_branch" name="appointment_branch" style="font-size:.7em;;width: 100%;">
    <option value="">Select Branch</option>

    @if($_SESSION['branch'] != null)

      @foreach($_SESSION['branch'] as $data)    
        <option value="{{ $data->id }}">{{ $data->name }}</option>
      @endforeach

   @endif                              
</select>

<select class="form-control" id="appointment_doctor" name="appointment_doctor" style="font-size:.7em;padding: 0.6500rem .75rem;width: 100%;">
    <option value="">Select Doctor</option>
</select>

AJAX

jQuery(".appointment_form_searchField").change(function() {        
    var branch_id = $("#appointment_branch").val();   
    var token = $('input[name=_token]').val();
    if(branch_id.trim() != '')
    {                
        jQuery.ajax({    
          url:"{{ url('/filter_doctor') }}",
          type: 'GET',
          data: {_token :token, branch_id : branch_id},
          success:function(msg){    
            $('#appointment_doctor option').remove();
            trHTML = '';
            trHTML += "<option value=''>Select Doctor</option>";
            msg.forEach(function(item){    
              trHTML += "<option value='"+item.id+"'>" + inputem.name + "</option>";
            });    
                $('#appointment_doctor').append(trHTML);
            }
        });
    }              
});

コントローラ

public function filter_doctor(Request $request)
{
    $branch_id = $request->branch_id;

    $query =  DB::table('service_doctors');
    $query->select('doctor_id','inactive_dates_in_this_month');

    if($branch_id != '0')
        $query->where('branch_id','=', $branch_id);

    $result_time = $query->get();
    $array_doctor_id = $result_time->pluck('doctor_id');
    $doctor = Doctor::whereIn('id', $array_doctor_id)->get();
    return $doctor;
}

誰でも助けてください?前もって感謝します

4

1 に答える 1

0

Laravel 5 を使用している場合は、次のようなことができます。

以下のように、欠落している詳細のアポイントメント_ブランチとアポイントメント_ドクターをフォームに追加します。

オプションは以前に投稿された値を次からロードするため、最初に古い予定_医師のデータ-oldid`Request::old()の古い値を選択する必要があります。これにより、スクリプトはユーザーが送信した古い値を識別し、ドキュメントの準備ができたときにこの選択ボックスをロードできます。appointment_branch'. Also temporary storevalue in

<select class="form-control appointment_form_searchField"  id="appointment_branch" name="appointment_branch" style="font-size:.7em;;width: 100%;">
    <option value="">Select Branch</option>

    @if($_SESSION['branch'] != null)

      @foreach($_SESSION['branch'] as $data)    
        <option value="{{ $data->id }}" {{ Request::old()?(Request::old('appointment_branch')==$data->id?'selected="selected"':''):'' }}>{{ $data->name }}</option>
      @endforeach

   @endif                              
</select>

<select class="form-control" id="appointment_doctor" name="appointment_doctor" style="font-size:.7em;padding: 0.6500rem .75rem;width: 100%;"   data-oldid="{{ Request::old()?Request::old('appointment_doctor'):'' }}">
    <option value="">Select Doctor</option>
</select>

そして、以下のようにスクリプトを書きます。

<script>
    jQuery(document).ready(function($){
        if(jQuery("#appointment_doctor").data('oldid')!='' && typeof(jQuery("#appointment_doctor").data('oldid'))!="undefined"){
            jQuery(".appointment_form_searchField").change();
        }
    });



    jQuery(".appointment_form_searchField").change(function() {        
        var branch_id = $("#appointment_branch").val();   
        var token = $('input[name=_token]').val();

        if(branch_id.trim() != '')
        {                
            jQuery.ajax({    
              url:"{{ url('/filter_doctor') }}",
              type: 'GET',
              data: {_token :token, branch_id : branch_id},
              success:function(msg){    
                $('#appointment_doctor option').remove();
                trHTML = '';
                trHTML += "<option value=''>Select Doctor</option>";
                msg.forEach(function(item){    
                  trHTML += "<option value='"+item.id+"'>" + inputem.name + "</option>";
                });    
                    $('#appointment_doctor').append(trHTML);
                }
                if(jQuery("#appointment_doctor").data('oldid')!='' && typeof(jQuery("#appointment_doctor").data('oldid'))!="undefined"){
                    jQuery('#appointment_doctor').val(jQuery("#appointment_doctor").data('oldid')); //select the old doctor id here
                }
            });
        }              
    });

</script>
于 2020-04-05T06:57:51.053 に答える