Reactjs this.state给出Uncaught TypeError:无法读取属性' groupsData'为null

时间:2015-06-18 05:47:04

标签: javascript ajax reactjs

我正在我的一个ReactJs组件中对2个不同的api进行2个基本的ajax调用。虽然,在运行呼叫时(在我确定知道的网址上工作并返回数据),我收到:

Uncaught TypeError: Cannot read property 'groupsData' of null

以下是单个组件:

var BrowseWidgetBox = React.createClass({
                getGroupsApi: function(){
                    $.ajax({
                        url: this.props.groupsApi,
                        dataType: 'json',
                        type: 'GET',
                        success: function(groupsData){
                            this.setState({groupsData: groupsData});
                        }.bind(this),
                        error: function(xhr, status, err){
                            console.error(this.props.groupsApi ,status, err.toString());
                        }.bind(this)
                    });

                },
                getItemsApi: function() {
                 $.ajax({
                        url: this.props.itemsApi,
                        dataType: 'json',
                        type: 'GET',
                        success: function(itemsData){
                            this.setState({itemsData: itemsData});
                        }.bind(this),
                        error: function(xhr, status, err){
                            console.error(this.props.groupsApi ,status, err.toString());
                        }.bind(this)
                    });
                },
                componentDidMount: function() {
                    this.getGroupsApi();
                    this.getItemsApi();
                },
                render: function() {
                    return (<div className="BrowseWidgetBox">
                                <MainMenu groupsData={this.state.groupsData} itemsData={this.state.itemsData} />
                                <Display  />
                            </div>);
                }
            });



                React.render(
                    <BrowseWidgetBox groupsApi="/*imagine a working url here*/" itemsApi="/*imagine a working url here*/" />, document.getElementById('widget-container')
                );

在reactJS / ajax方面是否有一些明显的缺失?

2 个答案:

答案 0 :(得分:6)

更多实际答案,取决于使用过的标准:

ES6课程

export class Component extends React.Component {
  constructor(props) {
    super(props);
    this.state = { groupsData: {}, itemsData: {} };
  }
  ...
}

ES7 +课程

export class Counter extends React.Component {
  state = { groupsData: {}, itemsData: {} };
  ...
}

答案 1 :(得分:3)

您应该在组件中添加getInitialState方法,您应该在其中设置初始状态

var BrowseWidgetBox = React.createClass({
   getInitialState: function () {
      return {groupsData: {}, itemsData: {}};
   },
   // your code
});