|
|
|
ต้องการ Reload ข้อมูล Json จาก url โดยไม่ต้องรีเฟรชหน้านั้นโดยใช้ php |
|
|
|
|
|
|
|
ใช้ ajax request กลับมา ที่ server เพื่ออ่านค่าใหม่อีกครั้ง
Code (JavaScript)
$(document).ready(()=>{
getNewGolePrize();
});
function getNewGoldPrice(){
$.ajax({
url: 'myhost.com/GetPrice.php', datatype:'json',
success: r=>{
$('div[data-id="gold"]').html( r.gold);
$('div[data-id="us"]').html( r.us);
$('div[data-id="pounds"]').html( r.pound);
setTimeout( getNewGoldPrice, 5000);
}
});
}
Code (PHP)
// GetPrice.php
<?php
$url = 'http://www.thaigold.info/RealTimeDataV2/gtdata_.txt';
$data_json = file_get_contents($url);
echo $data_json;
|
|
|
|
|
Date :
2020-06-23 18:15:11 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|