我试图从http://sigmajs.org/的主页获得带有3个边缘示例的简单3节点。然而,而不是开始它让我挫败......
给出以下index.html
<html>
<head>
<style type="text/css">
#container {
max-width: 400px;
height: 400px;
margin: auto;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="sigma.min.js"></script>
<script src="sigma.parsers.json.min.js"></script>
<script>
sigma.parsers.json('data.json', {
container: 'container',
settings: {
defaultNodeColor: '#ec5148'
}
});
</script>
</body>
</html>
和以下data.json
{
"nodes": [
{
"id": "n0",
"label": "A node",
"x": 0,
"y": 0,
"size": 3
},
{
"id": "n1",
"label": "Another node",
"x": 3,
"y": 1,
"size": 2
},
{
"id": "n2",
"label": "And a last one",
"x": 1,
"y": 3,
"size": 1
}
],
"edges": [
{
"id": "e0",
"source": "n0",
"target": "n1"
},
{
"id": "e1",
"source": "n1",
"target": "n2"
},
{
"id": "e2",
"source": "n2",
"target": "n0"
}
]
}
最新版本的sigma.min.js和sigma.parsers.json.min.js图书馆取自https://github.com/jacomyal/sigma.js/releases/download/v1.1.0/release-v1.1.0.zip
鉴于index.html,data.json和js库都在一个目录中,index.html不会在Chrome,Firefox或IE10中显示简单图形。
为了让这个例子有效,我在这里缺少什么?
答案 0 :(得分:1)
它不会呈现,因为sigmajs使用XMLHttpRequest
来解析文件data.json以及chrome和其他浏览器的web安全性阻止XMLHttpRequest
到本地文件,因为这是一个安全问题。