0

我想将数据库中的数据查询到一个 json 数组中,该数组最终会在 javascript 中生成一个力有向图。这是 Json 数组在最终结果中的样子。但是节点可以有多个邻接或没有,我如何查询一个json数组,其中邻接部分因节点而异,并且能够根据节点的邻接数量进行调整?

Var JSON =[ 
 {
  "adjacencies": [
    {
      "nodeTo": "graphnode9", 
      "nodeFrom": "graphnode5", 
      "data": {}
    }
  ], 
  "data": {
    "$color": "#416D9C", 
    "$type": "star"
  }, 
  "id": "graphnode5", 
  "name": "graphnode5"
},
];

到目前为止,这是我的尝试,但是这只产生一个只允许一个邻接的 json,我如何设置一个 Json 查询来调整节点具有的邻接数量,而不是将自身限制为一组数组形式或数组结构?

这是我的数据库结构

nodes                 Relationships                      
-----                 -------------
id int(11),           id int(11),
name varchar(35),     to int(11), //this is the destination node from the id relation 
color varchar(7),     data varchar(0) null
type varchar (12),    Foreign key (id) references nodes(id)
Primary key (id)       

engine = innodb    

这是我的尝试

function getjson()
{
 $db = adodbConnect();
 $query = "SELECT nodes.*, relationships.* FROM nodes LEFT JOIN relationships ON nodes.id    = relationships.id";
 $result = $db -> Execute($query);
 $count=$result->RowCount();
 $row=$result->FetchRow();

 $array= array[];

 while ($row)
  {
  $id= $row['id'];
  $name = $row['name'];
  $color1 = $row['color'];
  $type1 = $row['type'];
  $to=$row['to'];
  $array = [$id,$name,$color1,$type1,$to];
 }
 json_encode($array)
 }    
4

0 回答 0