ajax
を使用する 、category
を選択した後 ajax
を送信します リクエストしてこれを行うには、change
を使用する必要があります select
のイベント 、例:
// Assumed category is id of the select
$('#category').on('change', function(){
var id = $(this).val();
$.getJSON("subcategory/" + id , function(data){
// Assumed subcategory is id of another select
var subcat = $('#subcategory').empty();
$.each(data, function(k, v){
var option = $('<option/>', {id:k, value});
subcat.append(option);
});
});
});
サーバー側で、次のようなルートを作成します(コントローラーとEloquentを使用できます):
Route('subcategory/{id}', function($id){
// Get the data from database according to the id
// Build an array as: id => value and then return
return Response::json($subcat);
});