Closed. This question needs to be more focused。它当前不接受答案。
想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
3年前关闭。
Improve this question
我正在尝试使用play框架创建一个Web应用程序,并且想在前端使用react js。如何在我的Play Web应用程序中集成react js?
reactjs
演示:http://codepen.io/gaearon/pen/rrpgNB?editors=1010
并且此博客文章可能对解决您的问题有所帮助
https://facebook.github.io/react/docs/rendering-elements.html
想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
3年前关闭。
Improve this question
我正在尝试使用play框架创建一个Web应用程序,并且想在前端使用react js。如何在我的Play Web应用程序中集成react js?
最佳答案
我对游戏框架的知识为零,但在您的Web应用程序中集成React并不难。
如果您已编译reactjs JS文件。只需将其包含在索引页的 header 标记中即可。并声明带有ID的div。然后像这样做一些代码
html
<div id="root">
<!-- This element's contents will be replaced with your component. -->
</div>
reactjs
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);
演示:http://codepen.io/gaearon/pen/rrpgNB?editors=1010
并且此博客文章可能对解决您的问题有所帮助
https://facebook.github.io/react/docs/rendering-elements.html
09-18 04:55