如何在Meteor React的组件上执行onRendered模板

时间:2016-02-08 02:02:51

标签: meteor reactjs

我想在使用React Component渲染的模板上显示画布。 我们知道在Blaze的风格中我们可以用类似的东西来表现

Template.test.onRendered = function(){
    // draw the canvas
}

如果使用组件,我们如何调用canvas onRendered?

1 个答案:

答案 0 :(得分:2)

我相信你正在寻找componentDidMount()。 Meteor Chef在他的博客上有一些很好的博客文章。这是他第一个React walkthroughs之一的链接。