0
我想從「JSON」數組中提取特定的數據。 到目前爲止,我已經嘗試過這樣做,請幫助我。如何動態創建JSON數據的HTML表格?
<?php
$uri=$_POST['uri'];
$api_key=$_POST['api_key'];
$board=$uri.$api_key;
$value=file_get_contents($board);
$json_o=(array)json_decode($value);
//echo "<pre>";
print_r($json_o);//here is the result of request
//echo "</pre>";
?>
使用each()
在data
取 「URI」 - 它引用了 「.js文件」 頁
$("#btn2").click(function(event){
$.post(
"main.php",{api_key:"024b427a5d41a62",uri:"https://kanbanflow.com//v1/tasks?apiToken="},
function(data) {
$('#content').html(data);
}
);
});
您可以發佈您的JSON結構? –
其大導師。你還想讓我發送嗎? – user3386765
不是全部。只想外部結構下面 –