gpt4 book ai didi

angular - mxGraph 及其与 angular 8 的类型集成

转载 作者:行者123 更新时间:2023-12-05 02:10:46 26 4
gpt4 key购买 nike

当我使用任何 mxgraph 方法/值时,我的 mxgraph 是“未定义的”

我已经在这个线程上尝试了 viks 的答案:How to integrate mxGraph with Angular 4?

但即使这给了我打字和智能感知工作正常我仍然有我的 mxgraph 未定义。

我应该提一下,这是一个全新的 Angular 项目,我只是按照 viks 的教程来到这里。

import { mxgraph } from "mxgraph";

declare var require: any;

const mx = require('mxgraph')({
mxBasePath: 'assets/mxgraph'
});
@Component({...})
export class LetestComponent implements OnInit {
ngOnInit() {
var container = document.getElementById('graphContainer');
var graph = new mx.mxGraph(container);
}
}

在 HTML 文件中加上这个

<div id="graphContainer"></div>

我应该不会有任何错误,我应该能够使用 mx 调用任何 mxGraph 方法。

当我编译代码时它似乎工作正常,但是当我在浏览器的控制台上查看它时我有:

"Uncaught TypeError: Cannot set property 'mxBasePath' of undefined at build.js:11 at Module../src/app/letest/letest.component.ts (letest.component.ts:6)"

我不知道这是否是一个问题,因为我使用的是 angular 8,而 viks 的答案是 angular 4,或者它是否与 typescript 语法有关,从那时起可能已经改变。

如果有人能帮我解决这个问题,那就太棒了,

提前致谢!

编辑:我还在尝试很多东西,但我想我并不真正理解“require('mxgraph')”部分,它在那里有未定义的,甚至认为 mx 常量不是未定义的如果我将它记录到类里面的控制台。也许在 Angular 8 中有一种新方法可以做同样的事情?

我还应该提到,mxgraph 的类型似乎在 Visual Code studio 中运行良好,就像我有定义但没有实际代码一样。

编辑 2:在深入研究之后,我开始使用 https://itnext.io/how-to-integrate-mxgraph-with-angular-6-18c3a2bb8566但问题是这些类型已有 4 年历史,因此它缺少最新 mxgraph 版本中的大量方法/变量。

我发现在这些类型中只有(正在工作)

declare class mxGraph{..}

而最新的类型使用(不工作)

declare namespace mxgraph {
export class mxGraph {..}
}

有人可以解释一下区别吗?

最佳答案

MxGraph 是一个用 JavaScript 编写的库。 Angular 使用的 TypeScript 具有类型(顾名思义),然后编译为 JavaScript(没有静态类型)。为了让 TypeScript 知道 JS 库中的正确类型等,您需要一些类型定义。

据我所知,MxGraph 不存在这样的类型定义。

但这并没有阻止我们,我们仍然可以使用 JS 库!以下是我在我的项目中使用 MxGraph 的方式:

我的 package.json 中有一个正常的依赖项:"mxgraph": "^3.9.12",

但是我们还需要告诉 Angular 在哪里可以找到 JS 脚本!查看我的“angular.json”文件:

{
"projects": {
"architect": {
"build": {
"options": {
"assets": [
{ "glob": "**/*", "input": "src/assets/", "output": "/assets/" },
{ "glob": "favicon.png", "input": "src/", "output": "/" },
{ "glob": "**/*", "input": "./node_modules/mxgraph/javascript/src", "output": "/assets/mxgraph" }
]
"scripts": [
"node_modules/mxgraph/javascript/mxClient.js"
]}
}
}
}
}

注意:我只包含了相关的部分。我需要告诉 Angular 这个外部脚本应该被包含并可用。 See docs

我的模板 (mygraph.component.html) 看起来有点不同:

<div #graphContainer
style="overflow:hidden;width:100%;height:100%; padding: 10px;">
</div>

你看,Angular 使用“#”符号作为模板引用!

这是我的“mygraph.component.ts”:

import 'mxgraph/javascript/mxClient.js';

/**
* externally (in mxClient) defined vars
*/
declare var mxClient: any;
declare var mxUtils: any;
declare var mxRubberband: any;
declare var mxConstants: any;
declare var mxPerimeter: any;
declare var mxEdgeStyle: any;

const mx = require('mxgraph')({
mxBasePath: 'assets/mxgraph'
});

@Component({
selector: 'app-graph',
templateUrl: './graph.component.html',
styleUrls: ['./graph.component.scss']
})
export class GraphComponent {

@ViewChild('graphContainer', { static: true }) graphContainer: Element;

constructor(private http: HttpClient) {}

// This I'm calling in my custom logic
private draw() {
// Checks if the browser is supported
if (!mxClient.isBrowserSupported()) {
mxUtils.error('Browser is not supported!', 200, false);
} else {
// Creates the graph inside the given container
this.graphContainer['nativeElement'].innerHTML = '';
const graph = new mx.mxGraph(this.graphContainer['nativeElement']);

// Get and clone style, just for demonstration
let style = graph.getStylesheet().getDefaultVertexStyle();
let style2 = mxUtils.clone(style);
graph.getStylesheet().putCellStyle('myStyle', style2);

// Gets the default parent for inserting new cells. This
// is normally the first child of the root (ie. layer 0).
const defaultParent = graph.getDefaultParent();

// Adds cells to the model in a single step
graph.getModel().beginUpdate();

try {
// Do some drawing
// graph.insertVertex(...
// graph.insertEdge(...
} finally {
// Updates the display
graph.getModel().endUpdate();

// Make Graph not changeable by User
graph.setEnabled(false);
}
}
}
}

虽然这不是一个完整的示例(我刚刚从我的代码中提取了一些有趣的部分),但它应该可以帮助您进行设置和开始。具体绘制请引用MxGraph文档。

关于angular - mxGraph 及其与 angular 8 的类型集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58186662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com