testtongji.php 代碼返回數據整理最后想要的結果
問題描述
testtongji.php 代碼如下
<?php error_reporting(0);
$url = 'https://www.zzxxxx.xx/api/wetds/stats/';
$options = array(
'http' => array(
'header' => "Content-Type: application/json",
'header' => "Authorization: Token 633b4deb1cd517a01851a3335811b9ae8e1d6d6d",
'method' => 'GET',
'content' => http_build_query
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
echo ($result);
打開testtongji.php 返回數據如下
{"bandwidth_used":393073846353,"bandwidth_remaining":680667977647.0,"bandwidth_limit":1073741824000.0,"bandwidth_projected":1496203172977,"last_request_at":"2021-01-13T01:59:38.381732-08:00","requests_total":239278,"requests_successful":238115,"requests_failed":1163,"request_countries":{"US":238334,"NL":848,"RS":96},"requests_error_reasons":{"target_read_deadline":1142,"target_connect_timeout":12,"client_read_timeout":2,"client_read_eof":7},"request_failure_status_codes":{}}
echo ($result);整理如下
需要把以上返回的數據整理為以下內容 bandwidth_used":393073846353,"bandwidth_remaining":680667977647.0 計算出393073846353字節 =多少GB 680667977647.0字節==多少GB 像下面這樣展示出,其他的數據都不要
已用流量: XXXX GB
剩余流量: XXXX GB
問題解答
回答1:接口數據返回給前端, 用js map方法處理就好了
相關文章:
1. 點擊頁面就自動輸入到mysql.求解2. javascript - vue 數據更新了。但是dom沒有更新,,,,,如圖3. javascript - windos下第一次用Django無法正確創建工程目錄4. javascript - 判斷用戶網絡環境5. javascript - iframe 為什么加載網頁的時候滾動條這樣顯示?6. css - 百分比min-height的一個問題7. java - 多叉樹求值,程序高手,算法高手看過來8. javascript - angular-ui-bootstrap model 模態框出現的位置怎么調整9. valign=top 是啥意思10. javascript - weex 怎么監聽滾動到某處,然后添加fixed固定效果
