微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 将异步获取的数据传递给子道具

我正在创建一个应用程序,从远程源获取一系列新闻项目并将其显示页面上.

我有端点,并且可以使用$.getJSON()通过控制台日志进行成功调用.我将此调用放入父组件,因为子组件将需要使用数据.

但是,当我将此数据传递给子组件时,会出现控制台错误

未捕获的TypeError:无法读取未定义的属性标题

这是因为React尝试在将数据传递到组件之前呈现组件.这让我觉得我应该首先在除了componentDidMount之外的地方调用我的ajax.

为了解决这个问题,我在子组件上设置了一个方法,如果支柱存在,则返回标题

getHeadline: function () {
    if(this.props.newsItems){
        return this.props.newsItems.headline
    } else {
        return null
    }
},

这感觉就像是一种讨厌的方式.有没有更好的方法,或者我在代码中遗漏了什么?

var BigStory = React.createClass({

    getHeadline: function () {
        if(this.props.newsItems){
            return this.props.newsItems.headline
        } else {
            return null
        }
    },

    render: function () {
        console.log('props:', this.props);
        console.log('newsItems:', this.props.newsItems);
        return (
            <div className="big-story col-xs-12">
                <div className="col-sm-5">
                    <h1>{this.getHeadline()}</h1>
                    <p>Placeholder text here for Now.</p>
                    <p>time | link</p>
                </div>
                <div className="col-sm-7">
                    <img src="http://placehold.it/320x220" alt=""/>
                </div>
            </div>
        );
    }
});

var Main = React.createClass({

    getinitialState: function () {
        return {
            newsItems: []
        }
    },

    componentDidMount: function () {
        this.getNewsItems();
    },

    getNewsItems: function () {
        $.getJSON('http://www.freecodecamp.com/news/hot', (data) => {
            console.log('data sample:', data[0]);
            this.setState({newsItems: data})
        })
    },

    render: function () {
        return (
            <div className="container">
                <div className="main-content col-sm-12">
                    <div className="left-sided-lg-top-otherwise col-lg-8 col-md-12 col-sm-12 col-xs-12">
                        <BigStory newsItems={this.state.newsItems[0]}/>
                    </div>
                </div>
            </div>
        );
    }
});

解决方法:

我建议将它留给父母来决定当它处于“加载”状态时要做什么,并将BigStory作为一个“哑”组件,总是呈现相同的假设它将始终接收有效的newsItem.

在这个例子中,我展示了一个< LoadingComponent />,但这可能是你需要的.这个概念是BigStory不应该担心“接收无效数据”的边缘情况.

var Main = React.createClass({
  // ...
  render() {
    const {newsItems} = this.state;
    // You Could do this, pass down `loading` explicitly, or maintain in state
    const loading = newsItems.length === 0;
    return (
      <div className="container">
          <div className="main-content col-sm-12">
              <div className="left-sided-lg-top-otherwise col-lg-8 col-md-12 col-sm-12 col-xs-12">
                  {loading 
                    ? <LoadingComponent />
                    : <BigStory newsItem={newsItems[0]} />  
                  }
              </div>
          </div>
      </div>
    );
  }
});

function BigStory(props) {
  // Render as usual. This will only be used/rendered w/ a valid
  return (
    <div className="big-story col-xs-12">
      <h1>{props.headline}</h1>
      {/* ... */}
    </div>
  )
}

另一种解决方案(尽管我推荐的方法更像上面)将始终以相同的方式使用BigStory组件,但在没有加载故事时为其提供“占位符故事”.

const placeholderNewsItem = {
  headline: 'Loading...',
  /* ... */
};

var Main = React.createClass({
  // ...
  render() {
    const {newsItems} = this.state;
    // Conditionally pass BigStory a "placeholder" news item (i.e. with headline = 'Loading...')
    const newsItem = newsItems.length === 0
      ? placeholderNewsItem
      : newsItems[0];
    return (
      <div className="container">
          <div className="main-content col-sm-12">
              <div className="left-sided-lg-top-otherwise col-lg-8 col-md-12 col-sm-12 col-xs-12">
                  <BigStory newsItem={newsItem} />
              </div>
          </div>
      </div>
    );
  }
});

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐