次のようなJavaScriptの文字列変数があります。
var tree='[{"id":1},{"id":2,"children":[{"id":3},{"id":4},{"id":5,"children"[{"id":6}]}]';
now i want to create a tree from this in which
# 1 and 2 will at same level
# 3 ,4 ,5 will be the sub nodes of 2.
# 6 will be the sub node of 5.
javascriptまたはjqueryでこのツリー変数からツリーを作成するのを手伝ってください。変数。