react 在 componentDidMount中定义的对象,如何在其他


class Demo extends Component {

    handleSubmit = () => {

        // 如何在这个生命周期内使用 chart 对象

    

    }

    componentDidMount() {

        // 构建变更大图

        var chart = new G2.Chart({

             container: 'dashboardChange',

             forceFit: true,

        });

    }

    }


慕姐4208626
浏览 273回答 2
2回答

米脂

你这样写不就可以了么class Demo extends Component {  handleSubmit = () => {    // 如何在这个生命周期内使用 chart 对象  }  componentDidMount() {    // 构建变更大图    this.chart = new G2.Chart({          container: 'dashboardChange',          forceFit: true,    });  }}

MYYA

直接绑定在 Demo 这个 class 中不就可以了吗
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript