javascript - Facebook's react.js -- object is not a function - Stack Overflow

Going along Facebook's read.js tutorial, I get this error:Uncaught TypeError: Property 'Comme

Going along Facebook's read.js tutorial, I get this error:

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

In fact react.js's own examples page has:

Uncaught TypeError: object is not a function

Can anyone explain the correct usage?


My progress in Tutorial

Import the following two javascripts:

.4.1.js .4.1.js

The HTML is one line:

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

And the javascript or rather <script type="text/jsx"> looks like this:

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


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


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

Going along Facebook's read.js tutorial, I get this error:

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

In fact react.js's own examples page has:

Uncaught TypeError: object is not a function

Can anyone explain the correct usage?


My progress in Tutorial

Import the following two javascripts:

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

The HTML is one line:

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

And the javascript or rather <script type="text/jsx"> looks like this:

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


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


var CommentList = React.createClass({
    render: function() {
        return (
        <div class="mentList">
        <Comment author="Pete Hunt">This is one ment</Comment>
        <Comment author="Jordan Walke">This is *another* ment</Comment>
        </div>
    );
    }
});
Share Improve this question edited Sep 12, 2013 at 20:36 john mangual asked Sep 12, 2013 at 17:54 john mangualjohn mangual 8,17213 gold badges58 silver badges96 bronze badges 1
  • Did you try to set return statment with return('....'). They are missing. – zer02 Commented Sep 12, 2013 at 20:41
Add a ment  | 

1 Answer 1

Reset to default 11

There are two main issues going on here.

First, when React.renderComponent is called, CommentList hasn't been assigned, and is therefore still undefined. This is causing an error because CommentBox's render function refers to

<CommentList />

which jsx piles to

CommentList(null)

When this exectutes and CommentList is undefined, we get an error because undefined is not a function. To fix this, all we need to do is move the CommentList declaration before the call to React.renderComponent.

Second, Comment and CommentForm are not defined anywhere. We need to either remove the references to them, or bring in their declarations from the tutorial.

For reference, here's a jsfiddle of the original code: http://jsfiddle/jacktoole1/nHTr4/

And here's what the fixed up code looks like if we include the declaration of Comment but simply remove the reference to CommentForm: http://jsfiddle/jacktoole1/VP5pa/

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743650584a4484502.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信