彩票走势图

流程图控件GoJS教程:如何将GoJS与Node.js结合使用

翻译|使用教程|编辑:杨鹏连|2020-10-30 16:33:18.417|阅读 376 次

概述:从2.0版本开始,GoJS可以用于没有DOM的上下文中,例如Node.js。本文介绍了如何将GoJS与Node.js结合使用。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

GoJS是一款功能强大,快速且轻量级的流程图控件,可帮助你在JavaScript 和HTML5 Canvas程序中创建流程图,且极大地简化您的JavaScript / Canvas 程序。

点击下载GoJS最新版

从2.0版本开始,GoJS可以用于没有DOM的上下文中,例如Node.js。但是,有一些注意事项:

  • 由于没有图DIV,因此必须设置Diagram.viewSize属性。这会影响所有与DIV大小相同的值,例如Diagram.position和视口大小的布局的布局结果。
  • 无法测量go.Pictures,必须改为设置GraphObject.desiredSize。
  • 无法准确测量go.TextBlocks,应改为设置GraphObject.desiredSize。
对于需要测量图片或文本块的服务器端操作,应考虑将无头浏览器与Node一起使用。 单击此处,获取使用Node与Puppeteer(无头Chrome)的示例。

Node.js示例

如果将以下JavaScript另存为nodescript.js,并与节点(node nodescript.js)一起运行,它将在控制台中输出Model JSON结果,其中包括布局节点的位置。您可以通过这种方式使用Node.js进行大型布局之类的服务器端操作,然后将JSON发送给客户端。

// nodescript.js
// This example loads the GoJS library, creates a Diagram with a layout and prints the JSON results.

// Load GoJS.  This assumes using require and CommonJS:
const go = require("gojs");

const $ = go.GraphObject.make;  // for conciseness in defining templates

const myDiagram =
  $(go.Diagram, '', // No DOM, so there can be no DIV!
    {
      viewSize: new go.Size(400,400), // Set this property in DOM-less environments
      layout: $(go.LayeredDigraphLayout)
    });

myDiagram.nodeTemplate =
  $(go.Node, 'Auto',
    // specify the size of the node rather than measuring the size of the text
    { width: 80, height: 40 },
    // automatically save the Node.location to the node's data object
    new go.Binding('location', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify),
    $(go.Shape, 'RoundedRectangle', { strokeWidth: 0},
      new go.Binding('fill', 'color')),
    $(go.TextBlock,
      new go.Binding('text', 'key'))
  );

// After the layout, output results:
myDiagram.addDiagramListener('InitialLayoutCompleted', function() {
  console.log(myDiagram.model.toJson());
});

// load a model:
myDiagram.model = new go.GraphLinksModel(
[
  { key: 'Alpha', color: 'lightblue' },
  { key: 'Beta', color: 'orange' },
  { key: 'Gamma', color: 'lightgreen' },
  { key: 'Delta', color: 'pink' }
],
[
  { from: 'Alpha', to: 'Beta' },
  { from: 'Alpha', to: 'Gamma' },
  { from: 'Gamma', to: 'Delta' },
  { from: 'Delta', to: 'Alpha' }
]);
另外,如果您的代码另存为nodescript.mjs或项目为"type": "module",则可以将GoJS用作ES6模块:
// nodescript.mjs
// This example loads the GoJS library, creates a Diagram with a layout and prints the JSON results.

// Load GoJS.  This assumes using import and ES6 modules:
import * as go from "gojs/release/go.mjs";

const $ = go.GraphObject.make;
. . .


想要购买GoJS正版授权,或了解更多产品信息请点击


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP