ReactJ에 대한 초보자 용 기사를 읽었습니다. 내가 읽은 기사는 코드 조각만을 보여주었습니다. 나는 나의 첫 번째 구성 요소에 문제가있어 :React.renderComponent가 함수가 아닙니다.
전체 코드 : 나는 embedded:11 Uncaught TypeError: React.renderComponent is not a function
를 볼 수있는 페이지를 열 때
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react-dom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.js"></script>
<meta charset="UTF-8">
<title>HELLO WORLD</title>
</head>
<body>
<div id="content"></div>
<script type="text/babel">
var HelloWorld = React.createClass({
render: function() {
return React.DOM.h1("hello world!!");
}
});
React.renderComponent(
HelloWorld,
document.getElementById("content")
);
</script>
</body>
</html>
이
사람이 올바른 방향으로 날 지점 주실 수 있습니까?
나는 또한 행운과 함께이 시도했습니다
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react-dom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.js"></script>-->
<meta charset="UTF-8">
<title>HELLO WORLD</title>
</head>
<body>
<div id="content"></div>
<script type="text/babel">
var HelloWorld = React.createClass({
render: function() {
return React.createElement("h1", null, "Hello world!!");
}
});
ReactDOM.render(React.createElement(HelloWorld, null), document.getElementById("content"));
</script>
</body>
</html>
I 돈 오류가 표시되지만 페이지가 비어 있습니다. – gstackoverflow
@gstackoverflow 수정 된 답변, 이제 작동합니다. –