React教程系列之In-browser JSX Transform

前端之家收集整理的这篇文章主要介绍了React教程系列之In-browser JSX Transform前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在浏览器环境下,我们如何使用JSX Transform

<script type="text/jsx">
        /** @jsx React.DOM */
        React.renderComponent(<h1>测试</h1>,document.getElementById('test'));
</script>

<script src="../build/react.js"></script>
<script src="../build/JSXTransformer.js"></script>

需要注意几点:

  • script的type为text/jsx
  • 注释/** @jsx React.DOM */ 是必须的

renderCOmponent方法

  • 第一个参数:类似模板
  • 第二个参数:dom

单独拿出:

  • 新建一个文件test.js,type="text/jsx"

离线转化:

  • npm install -g react-tools
  • jsx --watch **/**/

本文部分内容

http://facebook.github.io/react/docs/tooling-integration.html#productionizing-precompiled-jsx

http://facebook.github.io/react/docs/getting-started.html

原文链接:https://www.f2er.com/react/308182.html

猜你在找的React相关文章