vis.js - 如何 运行 getSeed() 方法

vis.js - how to run the getSeed() method

我正在使用 vis.js 创建一些数据地图。在文档中它说

"Ideally you try with an undefined seed, reload until you are happy with the layout and use the getSeed() method to ascertain the seed."

However, for the life of me I can't figure out how to "use the getSeed() method".

我假设它是一个函数,但每次我尝试它时我都会被告知

"Uncaught ReferenceError: getSeed is not defined"

谁能告诉我如何 运行 这个。我确信这很明显,但经过一天的搜索,我 none 更聪明了。

我试过了:

getSeed();
vis.getSeed();
var seed = getSeed();

我也把它放在我脚本的不同地方,但没有用。

您引用的文档与 Network 类型相关。因此,如果您使用以下内容创建网络:

var network = new vis.Network(container, data, options)

那么你应该可以调用 network.getSeed().

您可以在第 477 行看到定义 here