147 Star 595 Fork 231

openEA开源社区 / FlowDesigner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
load.js 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
FLOW.ready(function() {
if(window.location.href.substring(0, 4) == 'file') {
FLOW.init();
FLOW.loadJson(data);
} else {
// 获取数据
ZFSN.loadJsonFromUrl('/FlowDesigner/json/demoData.json', 'GET', function(err, text) {
if (!err) {
let data = JSON.parse(text);
// 初始化流程设计器
FLOW.init();
// 初始化加载josn数据到流程设计器
FLOW.loadJson(data);
}
});
}
});
JavaScript
1
https://gitee.com/openEA/FlowDesigner.git
git@gitee.com:openEA/FlowDesigner.git
openEA
FlowDesigner
FlowDesigner
feature-ES6

搜索帮助