javascript - react 引用问题

查看:89
本文介绍了javascript - react 引用问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

前几天浏览了下react的Tutorial,自己照官网写了一点东西,但是貌似引用出了问题.
React Tutorial of Geting Start

src/helloworld.js中:

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

helloworld.html中:

<script type="text/babel" src="src/helloworld.js"></script>

用python的http.server简易地搭建了一下并再浏览器中访问helloworld.html
发现渲染失败,浏览器控制台出现以下错误提示:

browser.min.js:27 Uncaught SyntaxError: http://localhost:8000/src/helloworld.js: Unexpected token (3:4)
ReactDOM.render(
    <h1>Hello, world!</h1>
    document.getElementById('example')
)

但是如果我把helloworld.js'helloworld.jsx,就能正常引用.
是不是说文档写错了?还是我的浏览器出问题了?
(ps: 浏览器版本: Google Chrome 55.0.2859.0 dev)

解决方案

<h1>Hello, world!</h1> 后面的逗号你没写

这篇关于javascript - react 引用问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆