$(document).ready( function() {
$.getJSON("/user", function(arr){
$.each(arr.data, function(){
$("#dt_basic").append("<tr><td>" + this['username'] + "</td><td>" + this['phoneNumber'] + "</td><td>" + this['company'] + "</td><td>" + this['city'] + "</td><td>" + this['activated'] + "</td>");
});
});
});