簡體   English   中英

Jointjs Hello World空白,控制台無錯誤

[英]Jointjs Hello World blank with no error in console

我是根據他們的tut http://jointjs.com/tutorial創建的

<html>
<head>
<title></title>

 </head>
 <body>
<div id="myholder" >

</div>

<link rel="stylesheet" type="text/css" href="joint.css">
<script type="text/javascript" src="joint.js"></script>

<script type="text/javascript">

    var graph = new joint.dia.Graph;

    var paper = new joint.dia.Paper({
        el: $('#myholder'),
        width: 600,
        height: 200,
        model: graph,
        gridSize: 1
    });

    var rect = new joint.shapes.basic.Rect({
        position: { x: 100, y: 30 },
        size: { width: 100, height: 30 },
        attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
    });

    var rect2 = rect.clone();
    rect2.translate(300);

    var link = new joint.dia.Link({
        source: { id: rect.id },
        target: { id: rect2.id }
    });
</script>


</body>
</html>

但是我什么也看不到,也沒有錯誤控制台。 如果我在結尾處移動了include,則會出現未知的錯誤聯合。

為什么呢

您忘記將創建的矩形和鏈接添加到圖形。

在腳本末尾添加此行。

graph.addCells([rect, rect2, link]);

希望這可以幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM