如何从外部访问React组件中使用的第三方DOM库中的对象的属性

时间:2018-10-21 19:45:36

标签: javascript reactjs react-dom

我想在基于React的项目中使用Vis.js。由于Vis Network的实现都不适合我,因此我必须使用普通库。

这是我测试的React组件

import { DataSet, Network } from 'vis';
import React, { Component, createRef } from "react";

class VisNetwork extends Component {

    constructor() {
        super();

        this.network = {};
        this.appRef = createRef();
        this.nodes = new DataSet([
            { id: 1, label: 'Node 1' },
            { id: 2, label: 'Node 2' },
            { id: 3, label: 'Node 3' },
            { id: 4, label: 'Node 4' },
            { id: 5, label: 'Node 5' }
        ]);
        this.edges = new DataSet([
            { from: 1, to: 3 },
            { from: 1, to: 2 },
            { from: 2, to: 4 },
            { from: 2, to: 5 }
        ]);
        this.data = {
            nodes: this.nodes,
            edges: this.edges
        };
        this.options ={};
    }

    componentDidMount() {
        this.network = new Network(this.appRef.current, this.data, this.options);
    }

    render() {
        return (
            <div ref={this.appRef} />
        );
    }
}

export default VisNetwork;

这是迄今为止安装的唯一组件

ReactDOM.render(<VisNetwork />,document.getElementById('mynetwork'));

我的问题是如何访问网络的属性,例如获取或删除节点。

node = nodes.get(nodeId);

我阅读了有关React Ref的内容,并尝试了类似的方法 () =>{ console.log(document.getElementsByClassName('vis-network'))作为ReactDOM.render()的回调,但这没有帮助。

另一个问题是为什么没有设置引用,而只是<div>

因为我认为组件的构造函数中的this.appRef = createRef();和render()中的ref={this.appRef}会导致引用。

Screenshot of debugger

希望您能给我提示。

1 个答案:

答案 0 :(得分:1)

实际上,流程应该是相反的,在组件外部定义节点,然后将其传递。为此,将构造函数定义为:

 constructor(props) {
    super(props);
    this.nodes = props.nodes;
    //...
}

然后将其构造为:

 const nodes = new DataSet([/*...*/]);
 ReactDOM.render(<VisNetwork nodes={nodes} />,document.getElementById('mynetwork'));

请注意,您应该将任何有状态的内容放入this.state中,并使用setState对其进行突变。