1

在 cytoscape.js 中,我可以使用

style: [
  {
    selector: 'node',
    style: {
      'content': 'data(id)',
    }
  },

当我将内容更改为 时'content': 'data(id), data(id)',它只是将其解释为字符串。

是否可以将变量作为变量而不是字符串来处理?

4

1 回答 1

3

使用一个函数:

content: function( ele ){ return 'foo' + ele.data('bar') + 'baz'; }

http://js.cytoscape.org/#style/mappers

于 2016-09-06T17:46:23.323 回答