简体   繁体   中英

Browser show blank page while using reactjs

Hi I am new in reactjs when i am running server.js file from terminal it show blank page on browser. The code of index.html file is:

 <!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8"/>
  <script src="https://cdnjs.cloudflare.com/ajax/babel-
core/5.8.23/browser.min.js"></script>
 <script 
src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react.js">
</script>
 <script 
 src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.7/react-
  dom.js"></script>
</head>
<body>
  <div id="app"></div>
 <script type="text/babel">
   ReactDOM.render(
  <h1>Hello React!</h1>,
   document.getElementById('app')
  );
 </script>
 </body>
</html>

Thanks in advance.

This is a working example.

In your code, the wrong part is the CDN link to babel-core. You may always check your console when working with JS (on Google Chrome: Ctrl + shift + J on Windows, Cmd + Opt + J on IOS).

On the other hand, I thought this was a good opportunity to also introduce components (see ).

 <!DOCTYPE html> <html lang="en"> <head> <title>My First React Example</title> </head> <body> <div id="hello"></div> <script src="https://unpkg.com/react@15.0.0/dist/react.js"></script> <script src="https://unpkg.com/react-dom@15.0.0/dist/react-dom.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script> <script type="text/babel"> var Greeting = React.createClass({ render: function() { return ( <p>Hello World</p> ) } }); ReactDOM.render( <Greeting/>, document.getElementById('hello') ); </script> </body> </html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM