0

我正在尝试在节点的属性之一中使用带引号的文本:

var network_json = {
    dataSchema: {
        nodes: [ { name: "label", type: "string" },
                 { name: "foo", type: "string" }
        ]
    },
    data: {
        nodes: [ { id: "1", label: "1", foo: "Text without quotes" },
                 { id: "2", label: "2", foo: "Some \"quoted\" text" }
        ]
    }
};
vis.draw({network: network_json});

然后为每个节点制作监听器:

vis.addListener("click", "nodes", function(event) {
    alert(event.target);
})

但是在单击带有引用文本的节点时出现“意外令牌非法”错误。我应该如何筛选那里的报价?

4

1 回答 1

1

对于有同样问题的人来说,这是一个错误。他们承诺会在下一个稳定版本中修复它。

https://groups.google.com/d/topic/cytoscapeweb-discuss/GWU0deOaaRs/discussion

他们按要求将固定的 swf 发送到电子邮件。

于 2012-03-29T18:23:01.567 回答