web-dev-qa-db-ja.com

jstreeのノードにデータを関連付ける方法は?

$("#ifTree").jstree({
            "plugins" : ["themes","html_data","ui","crrm"], 
            "themes" : {
                    "theme" : "Apple",
                    "dots" : true,
                    "icons" : false
            }           
    });

    $("#createIf_c").click(function () { 
        $("#ifTree").jstree("create",null,"inside",  { "data" :{ title:"if",value:"expression"} },
                function() {}, true);
    });
$("#display").click(function(){
            var a = $.jstree._focused().get_selected();
            alert(a.attr("value"));
    });

この上記のコードでは、jstreeを作成し、id #createIf_cのボタンをクリックすると、「if」というタイトルのノードを追加しますが、このノードに関連付けるデータを追加したいので、属性を追加しました。ノードの作成中。次に、この関連データ、ここでは「値」にアクセスしようとすると、「未定義」というアラートが表示されます。では、データをノードに関連付けるには別の方法がありますか?または、ノードの関連データにアクセスする別の方法は、jstree?.. please help ....です。

16
Abhii

これを行う最も簡単な方法は、html要素に属性を追加するのと同じです。

    var node = $.jstree._focused().get_selected(); //get the selected node or which ever you want the data to be associated with
    node.attr("expression","xyz"); //add an attribute (name,value) here, name-expression and value-xyz
4
Abhii

追加のデータをJSONノードに配置できます。dataこれは文書化されていません
enter image description here

17

Plzは著者の answer を参照します。

$('#tree').jstree(true).get_node("some_node_id")で情報を編集し、$('#tree').jstree(true).get_json("some_node_id")でjsonとして追加データを投稿できます。

You can add anything you want to the data object. Like:
{ "id" : "some_node_id" "text" : "some node", ... "data" : { "foo" : "bar", "example_array" : ["1",2,true], "obj" : {"asdf":"asdf1"}  } ...

And later on you can retrieve it like so:
$('#tree').jstree(true).get_node("some_node_id").data.obj.asdf; // this would equal "asdf1"
$('#tree').jstree(true).get_node("some_node_id").data.example_array; // this would be an array: ["1",2,true]

Setting other values is just as simple - you are working with a normal object:
$('#tree').jstree(true).get_node("some_node_id").data.obj.asdf = "some other value";
$('#tree').jstree(true).get_node("some_node_id").data.example_array = "I do not want this an array anymore";
$('#tree').jstree(true).get_node("some_node_id").data.obj.new_property = 1024;
13
Ace

データをノードに関連付ける適切な方法は次のとおりです:

さらにデータ、つまり属性を追加する場合は、すべての属性(名前、値)を"attr"プロパティの下に記述します

"attr":{attributeName1: "attributeValue1"、attributeName2: "attributeValue2" ......}

 $("#createIf_c").click(function () { 
 $("#ifTree").jstree("create",null,"inside",
   { "data" : "testNodeName", 
      "attr": { title:"if",value:"expression"} },  function() {}, true);
});
2
StackOverFlow

Jstree v3を使用すると、次のようにプラグインを使用して属性を関連付けることができます。

// create instance
var inst = $("#tree-id").jstree();
// create node definition
var node = {
    id: "new_node_id",
    text: "New Node",
    li_attr: { "data-files": "false" },
    a_attr: { "data-url": "some_url" }
};
// create node
var newNodeId = inst.create_node("#", node);

(ソースコメントからの)ノードパラメータの予想される形式:

// Expected format of the node (there are no required fields)
//{
//  id: "string" // will be autogenerated if omitted
//  text: "string" // node text
//  icon: "string" // string for custom
//  state: {
//      opened: boolean  // is the node open
//      disabled: boolean  // is the node disabled
//      selected: boolean  // is the node selected
//  },
//  children: []  // array of strings or objects
//  li_attr: { }  // attributes for the generated LI node
//  a_attr: { }  // attributes for the generated A node
//}

create_nodeパラメータの予想される形式:

// create_node(par, node, pos, callback, is_loaded)

// par (object) - the parent node (to create a root node use "#" (string) or `null`)
// node (object) - the data for new node (valid JSON object, or a simple string with the name)
// pos (object) - index to insert the node, "first" and "last" are supported, default is "last"
// callback (function) - a function to be called once the node is created
// is_loaded (boolean) - internal argument indicating if the parent node was succesfully loaded

// returns (string) - the ID of the newly create node
1
RickL
div id="tree_1" class="tree-demo">
    <ul>
        <li data-jstree='{ "opened" : false }' id="c67"> Sıcak İçecekler
            <ul>
                <li data-jstree='{ "type" : "file", "selected" : false }' id="500">Çay</li>
                <li data-jstree='{ "type" : "file", "selected" : false }' id="501">Fincan Çay</li>

            </ul>
        </li>
        <li data-jstree='{ "opened" : true }' id="c68"> Soğuk İçecekler
            <ul>
                <li data-jstree='{ "type" : "file", "selected" : true }' id="514">Ayran</li>
                <li data-jstree='{ "type" : "file", "selected" : true }' id="515">Kola</li>
                <li data-jstree='{ "type" : "file", "selected" : true }' id="516">Meyveli Gazoz</li>                    
            </ul>
        </li>
    </ul>
</div>

このhtmlは、<ul>および<li>要素で解決する場合にカスタムIDに非常に適しています。

0
Alp Altunel

HTML定義からデータを関連付けるには:

ツリーのHTML定義を使用してデータを関連付ける場合は、以下を使用します。

<li id="treesiteadmin-serverStatus" data-ic='{"form":"site.serverstatus"}' data-jstree='{"icon":"glyphicons glyphicons-server"}'>Stato del server</li>

現在選択されているノードの「データ」プロパティは次のとおりです。

{"jstree":{"icon":"glyphicons glyphicons-server"},"ic":{"form":"site.serverstatus"}}

結果を参照-選択したノードの「データ」プロパティ

0
Marco Balestra