返回值与反应

时间:2018-05-25 11:22:02

标签: reactjs

我的代码如下,但是" hello world"未显示

我的代码有问题吗?

请帮助

<html> 
<head>   
<script src="theme/public/js/react.production.min.js"></script>   
<script src="theme/public/js/react-dom.production.min.js"></script>
</head>
 <body>
   <div id="root"></div>
   <script type="text/babel">
     ReactDOM.render(
       <h1>Hello, world!</h1>,
       document.getElementById('root')
     );
   </script>
 </body>
 </html>

1 个答案:

答案 0 :(得分:0)

你还需要导入babel

  

<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>

这来自使用开发版docs

的官方文档
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Hello World</title>
    <script src="https://unpkg.com/react@16/umd/react.development.js"></script>
    <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
    <script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
  </head>
  <body>
    <div id="root"></div>
    <script type="text/babel">

      ReactDOM.render(
        <h1>Hello, world!</h1>,
        document.getElementById('root')
      );

    </script>
    <!--
      Note: this page is a great way to try React but it's not suitable for production.
      It slowly compiles JSX with Babel in the browser and uses a large development build of React.

      To set up a production-ready React build environment, follow these instructions:
      * https://reactjs.org/docs/add-react-to-a-new-app.html
      * https://reactjs.org/docs/add-react-to-an-existing-app.html

      You can also use React without JSX, in which case you can remove Babel:
      * https://reactjs.org/docs/react-without-jsx.html
      * https://reactjs.org/docs/cdn-links.html
    -->
  </body>
</html>