หาตัวอย่างการ นำข้อมูล ที่ได้จาก json ใส่ใน DataTable ไม่เจอ รบก
ตามหัวข้อเลยครับ หาตัวอย่างการ นำข้อมูล ที่ได้จาก json ใส่ใน DataTable ไม่เจอ รบกวนแนะนำหน่อยครับ
โดยผมเรียกข้อมูลมาจาก Api จากอีกระบบ แบบ CURL มา ตาม code ด้านล่างครับ
$curl = curl_init();
curl_setopt_array($curl, array(
.
.
.
));
$data = curl_exec($curl);
$getAPI = json_decode($data, true);
curl_close($curl);
$table = new DataTable(array(
/* ข้อมูลใส่ลงในตาราง */
'datas' => $getAPI, //<---- ตรงนี้ต้องระบุแบบไหนครับ
.
.
.
));
return table->render();
โดยผมเรียกข้อมูลมาจาก Api จากอีกระบบ แบบ CURL มา ตาม code ด้านล่างครับ
$curl = curl_init();
curl_setopt_array($curl, array(
.
.
.
));
$data = curl_exec($curl);
$getAPI = json_decode($data, true);
curl_close($curl);
$table = new DataTable(array(
/* ข้อมูลใส่ลงในตาราง */
'datas' => $getAPI, //<---- ตรงนี้ต้องระบุแบบไหนครับ
.
.
.
));
return table->render();
$datas = array(
array('coulmn1'=>'value1','column2'=>'value2', ....),
array('coulmn1'=>'value1','column2'=>'value2', ....),
....
);
ตัวอย่างมีใช้งานเยอะแยะเลยครับ เช่น https://github.com/...s/categories.php#L52