Mysql
 sql >> Database >  >> RDS >> Mysql

Crea la casella di selezione della sottocategoria su Modifica

Usa ajax , dopo aver selezionato la category invia il ajax richiesta e per farlo è necessario utilizzare change evento sul tuo select , ad esempio:

// 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);
        });
    });
});

Sul lato server, crea un percorso come questo (puoi usare un controller ed 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);
});