Facebook的react.js - 对象不是一个功能

时间:2013-09-12 17:54:50

标签: javascript facebook markdown frontend reactjs

沿着Facebook的read.js tutorial,我收到此错误:

Uncaught TypeError: Property 'CommentList' of object [object Object] is not a function

事实上,react.js自己的examples page有:

Uncaught TypeError: object is not a function

任何人都可以解释正确的用法吗?

<小时/>

我在教程中的进展

导入以下两个javascripts:

http://fb.me/react-0.4.1.js http://fb.me/JSXTransformer-0.4.1.js

HTML是一行:

  <div id="content"></div>

javascript或更确切地说<script type="text/jsx">如下所示:

var CommentBox = React.createClass({
    render: function() {
        return (
           <div class="commentBox">
        <h1>Comments</h1>
        <CommentList />
        <CommentForm />
        </div>
        );
    }
});


React.renderComponent(
    <CommentBox />,
    document.getElementById('content')
);


var CommentList = React.createClass({
    render: function() {
        return (
        <div class="commentList">
        <Comment author="Pete Hunt">This is one comment</Comment>
        <Comment author="Jordan Walke">This is *another* comment</Comment>
        </div>
    );
    }
});

1 个答案:

答案 0 :(得分:11)

这里有两个主要问题。

首先,当调用React.renderComponent时,尚未分配CommentList,因此仍未定义。这导致错误,因为CommentBox的渲染函数引用

<CommentList />

jsx编译为

CommentList(null)

当这个exectutes和CommentList未定义时,我们得到一个错误,因为undefined不是一个函数。要解决这个问题,我们需要做的就是在调用React.renderComponent之前移动CommentList声明。

其次,Comment和CommentForm没有在任何地方定义。我们需要删除对它们的引用,或者从教程中引入它们的声明。

作为参考,这里是原始代码的jsfiddle:http://jsfiddle.net/jacktoole1/nHTr4/

如果我们包含Comment的声明,只需删除对CommentForm的引用,这就是修复代码的样子:http://jsfiddle.net/jacktoole1/VP5pa/