通过urlParam在MxGraph中打开本地文件

时间:2017-05-19 08:19:32

标签: file local mxgraph

如何在通过urlParam传递名称的grapheditor中打开本地文件?我在index.html中尝试使用此代码,但它不起作用。

      var editor = new EditorUi(new Editor(urlParams['chrome'] == '0', themes));

        try
        {
          editor.open(encodeURI(urlParams['xml']));
        }
        catch (e)
        {
          mxUtils.error('Cannot open ' + urlParams['xml'] +
            ': ' + e.message, 280, true);
        } 

提前致谢。

1 个答案:

答案 0 :(得分:1)

我必须这样做。如果您有一台本地运行的服务器来提供文件,那将会很有帮助。例如:

python -m SimpleHTTPServer 8000

此命令将启动一个简单的服务器,以便您的浏览器可以发送AJAX请求以从文件系统加载文件。

我必须假设以下设置:您在文件index.html中的文件夹中运行mxGraph,同一文件夹包含另一个包含xmls的文件夹。像这样:

index.html
/xmls/1.xml
/xmls/2.xml
...

这是您执行启动服务器的命令。 现在,您可以在此处访问您的应用程序:localhost:8000 / index.html

通过添加GET参数来识别硬盘驱动器上的文件是正确的。

例如:localhost:8000/index.html?xml=1.xml

为了使这个例子起作用,结构应该与GraphEditor(https://jgraph.github.io/mxgraph/javascript/examples/grapheditor/www/index.html)相当。克隆这个项目并使用它是个好主意。

现在在index.html中你可以添加如下内容:

function open_xml_on_init(editorUi) {
var xml_file_path = 'xml/' + urlParams['xml'];
if (urlParams['xml'] != null && urlParams['xml'].length > 0) {
    var splitted = xml_file_path.split('/');
    var only_name = splitted[splitted.length - 1];
    editorUi.editor.filename = only_name;
    var req = mxUtils.get(xml_file_path, mxUtils.bind(this, function (req) {
        if (req.request.status >= 200 && req.request.status <= 299) {
            if (req.request.response.length > 0) {
                editorUi.editor.graph.model.beginUpdate();
                try {
                    var xmlElem = mxUtils.parseXml(req.request.response).documentElement;
                    editorUi.editor.setGraphXml(xmlElem);

                }
                catch (e) {
                    console.error(e);
                }
                finally {
                    editorUi.editor.graph.model.endUpdate();
                }
            }
        }
    }));
}
}

在index.html的某个地方运行此方法,你就可以了!

open_xml_on_init(editor_ui);