mxGraph显示网格,但不显示图像

时间:2016-10-27 01:07:47

标签: javascript java mxgraph

我使用mxGraph在网页中开发可绘制区域。

这是遗留代码,我试图理解它,因为该区域除了网格外没有显示任何图像。

这是我的javascript代码,用于显示简单的图表

//define a window to show the image and put a grid as background
container.style.background = 'url("js/src/images/grid.gif")';
//some other definitions here

var model = new mxGraphModel();
var graph = new mxGraph(container, model);

var id = _GET("id");
mxUtils.post("../Diagram", 
"action=get&id="+id, 
function(req)
{
    var node = req.getDocumentElement();
    var dec = new mxCodec(node.ownerDocument);
    dec.decode(node, graph.getModel());
}, 
function(error){
    console.log("Error in the design area");
    console.log(error);
});

../Diagram是一个servlet Java,您可以在下面看到:

try {
    BufferedReader buffRead = new BufferedReader(new FileReader("/home/glassfish/mySite/Repository/"+getId()+"/"+getName()+".txt")); 
    String line = ""; 
    while (true) { 
        if (line != null) { 
            file = line; 
        } else {
            break; 
        }
        line = buffRead.readLine(); 
    } 
    buffRead.close();
} catch(Exception e) {
    System.out.println("File not found");
}
return file;

返回的XML(文件)如下所示:

<root>
    <mxCell id="0"/>
    <mxCell id="1" parent="0"/>
    <mxCell id="2" parent="1" style="shape=ellipse;fillColor=#33CCFF" value="Objective" vertex="1">
        <mxGeometry as="geometry" height="40" width="100" x="262" y="90"/>
    </mxCell>
</root>

但是,屏幕中的结果始终只是网格

grid

当我调试行dec.decode(node, graph.getModel());以查看node值时,我得到了一个包含Java返回的信息的XML对象。

在Chrome中,我在控制台中没有收到任何消息,但是当我在Firefox中测试时,我收到一条警告,说我在文件graph.properties&#34;中有一个&#34; XML解析错误。 ,但这个文件不是XML(实际上,我不知道这个文件是什么)。我也在这里粘贴文件

graph.properties

alreadyConnected=Nodes already connected
containsValidationErrors=Contains validation errors
updatingDocument=Updating Document. Please wait...
updatingSelection=Updating Selection. Please wait...
collapse-expand=Collapse/Expand
doubleClickOrientation=Doubleclick to change orientation
close=Close
error=Error
done=Done
cancel=Cancel
ok=OK

更新

我仍然没有解决问题,但我得到了新的证据。

当我调试dec.decode(node, graph.getModel());行时,我有dec变量的两个属性。 XMLDocument以及空数组。我认为问题可能出在编码部分,但我在page about mxCodec中找不到任何提示。

image of debug

1 个答案:

答案 0 :(得分:0)

我终于找到了问题的解决方案。

错误发生在Javascript部分,但我不知道为什么控制台没有显示任何问题。无论如何,替换下面代码的原始成功函数可以解决问题。

    function(req)
    {
        var doc = req.getDocumentElement();
        var codec = new mxCodec(doc);
        var elt = doc.firstChild;
        var cells = [];

        while (elt != null)
        {
          cells.push(codec.decode(elt));
          elt = elt.nextSibling;
        }

        graph.addCells(cells);
    }