如何在服务器上呈现React以回调函数?

时间:2016-11-27 03:28:19

标签: reactjs render

我希望服务器上的render react-app具有完整的生命周期和更新支持。

https://github.com/Yomguithereal/react-blessed类似,但不是终端,回调函数。

示例,伪代码:

render(<MyComponent />, (tree)=>{
    console.log(tree); // new react component-tree
})

另一个例子,https://github.com/iamdustan/react-hardware

https://github.com/facebook/react/blob/077d660a2727e3d3d6629d3a62693f8509100139/src/renderers/testing/ReactTestRenderer.js#L138

1 个答案:

答案 0 :(得分:0)

我相信您正在寻求实施“自定义渲染器”以进行反应。这篇文章我发现可能会有所帮助: http://goshakkk.name/react-custom-renderers/