“Zugriff auf XMLHTTPrequest bei Datatables” Code-Antworten

Zugriff auf XMLHTTPrequest bei Datatables


function loadDataToTable(url,tableName){

    var dataSet;
    $.get(url), function(responseText) {
        /*assuming the result is the JSON you need. 
        I'm skipping over all of the checks you would do*/
        dataSet = JSON.Parse(responseText)
    };



    $("#"+tableName).DataTable( {
        data: dataSet,
        columns: [
            { title: "Col1" },
            { title: "Col2" },
            { title: "Col3" },
            { title: "Etc." }
        ]
    } );
}

Bewildered Bison

Zugriff auf XMLHTTPrequest bei Datatables

processFunction( [{"name": "Ram","age": "21","sex": "Male","occupation": "Doctor"},{"name": "Mohan","age": "32","sex": "Male","occupation": "Teacher"},{"name": "Rani","age": "42","sex": "Female","occupation": "Nurse"},{"name": "Johan","age": "23","sex": "Female","occupation": "Software Engineer"},{"name": "Shajia","age": "39","sex": "Female","occupation": "Farmer"}])
Bennett's Wallaby

Ähnliche Antworten wie “Zugriff auf XMLHTTPrequest bei Datatables”

Fragen ähnlich wie “Zugriff auf XMLHTTPrequest bei Datatables”

Weitere verwandte Antworten zu “Zugriff auf XMLHTTPrequest bei Datatables” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen