3

当使用 insertNodes 时,将为节点创建一个唯一的 ID。

insertNodes(addSelected, data, before, anchor)

我们如何分配某个名称/文本作为新节点的 id?

4

1 回答 1

3

创建一个自定义的“创建者”函数,并在项目上设置 id。例子 :

在你的 html

<ol id="listNode">
</ol>

在你的 javascript 中:

require(["dojo/dnd/Source"]);

function myCreator( item, hint ) {
    var myLi = dojo.create( 'li', { id : item.id, innerHTML: item.text });

   if (hint == 'avatar') {
      // create your avatar if you want
      myLi.innerHTML = "Moving " + item.text + "...";
   }
   return {node: myLi, data: item, type: "foo"};
}

dojo.ready(function() {
    var list = new dojo.dnd.Source("listNode", {creator: myCreator});

    list.insertNodes(false, [
        { id : "id1", text : "foo"},
        { id : "id2", text : "bar"},
        { id : "id3", text : "baz"}
    ]);
});
于 2011-12-15T11:57:50.490 回答