is the best way to catch up CSV with ajax? such as:
$(document).ready(function () {
$.ajax({
type: "GET",
url: '/api/myapilink/',
dataType: "json",
success: function (data) {
alert('Hello' + data);
}
});
});
The received data from the CSV http link is:
"objectno";"objectname";"objectclassname";"objecttype";"description";
"lastmsgid";"deleted"
"026";"Demo 1";"Car";"";"";"107711249";"0"
"027";"Demo 2";"Car";"";"";"105985957";"0"
"028";"Demo 3";"Car";"";"";"107794499";"0"
I hope someone has an example or know! (updated)