我想在使用React Component渲染的模板上显示画布。 我们知道在Blaze的风格中我们可以用类似的东西来表现
Template.test.onRendered = function(){
// draw the canvas
}
如果使用组件,我们如何调用canvas onRendered?
答案 0 :(得分:2)
我相信你正在寻找componentDidMount()
。 Meteor Chef在他的博客上有一些很好的博客文章。这是他第一个React walkthroughs之一的链接。