我想从“JSON”数组中仅提取特定数据。 到目前为止,我已经尝试过这样做,请帮助我。
<?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>";
?>
获取“uri” - 引用“.js”页面
$("#btn2").click(function(event){
$.post(
"main.php",{api_key:"024b427a5d41a62",uri:"https://kanbanflow.com//v1/tasks?apiToken="},
function(data) {
$('#content').html(data);
}
);
});
答案 0 :(得分:0)
使用data
遍历each()
并构建html
function(data){
var myTable=$('#myTable');
$(data).each(function(index,obj){
// prepare TR & TDs for each row and append to myTable
})
}