是否在componentWillReceiveProps中调用API对路由器参数的更改是否正确?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否在componentWillReceiveProps中调用API对路由器参数的更改是否正确?相关的知识,希望对你有一定的参考价值。
我有一组组件,其中每个组件都有不同的数据由服务器提供。因此,当用户点击组件4时,应该有一个API调用并获取有关所单击链接的信息。
对于子组件的初始更新,我在componentWillMount
中调用一个动作,因为route参数是我检测用户点击了哪个链接的唯一来源。我在componentWillReceiveProps
中调用API基于改变了url中的page_id
。但是在reactjs的官方文档中,提到ComponentDidMount
是进行异步调用的正确位置。
我已经浏览了很多关于此的博客和教程。遗憾的是,我找不到最好的解决方案。请指导我。这是我的父组件
import React from 'react';
import {CommentBox} from './CommentBox';
import SuggestionBox from './SuggestionBox';
import ProductBlog from './ProductBlog';
import FeaturesList from './FeaturesList';
import ContactForm from './ContactForm';
import WebVRSuggestion from './WebVRSuggestion';
import ModelFooter from './ModelFooter';
import WebVR from './WebVR';
import {connect} from 'react-redux';
import {getProductInfo,getSuggestions} from '../actions/productActions';
import {getComments} from '../actions/commentActions';
class SmartProduct extends React.Component{
//To execute the parent before the child componentWillMount(){}
componentWillMount(){
// if(this.props.productInfo === undefined || this.props.productInfo.length == 0){
this.props.getProductInfo(this.props.page,this.props.pageId);
this.props.getComments(this.props.page,this.props.pageId);
this.props.getSuggestions(this.props.page,this.props.pageId);
// }
}
componentWillReceiveProps(nextProps){
if(nextProps.page !== this.props.page || nextProps.pageId !== this.props.pageId){
this.props.getProductInfo(nextProps.page,nextProps.pageId);
this.props.getComments(nextProps.page,nextProps.pageId);
this.props.getSuggestions(nextProps.page,nextProps.pageId);
}
}
render(){
return (
<div className="container-fluid bg-darkGrey ">
<div className="row mx-0 py-3 bgTheme">
{/* <h3>{this.props.page}</h3>
<h3>{this.props.pageId}</h3>*/}
<div className="col-sm-3 col-md-3 col-lg-3 mb-2">
<CommentBox page={this.props.page}
pageId={this.props.pageId}
comments={this.props.comments}
/>
</div>
<div className="col-sm-6 col-md-6 col-lg-6 productWrapper">
<div className="productVR rounded" >
<WebVR width={625} height={405} />
{/* <WebVR /> <div id="container123"></div>
<div id="container123" style={containerStyle}></div>
*/}
</div>
<ModelFooter page={this.props.page}
pageId={this.props.pageId}
productInfo={this.props.productInfo}
/>
</div>
<div className="col-sm-3 col-md-3 col-lg-3 ">
<SuggestionBox
page={this.props.page}
pageId={this.props.pageId}
suggestions={this.props.suggestions}
/>
</div>
</div>
<div className="row mx-0">
<div className="col-sm-3 col-md-3 col-lg-3">
<ProductBlog page={this.props.page}
pageId={this.props.pageId}
productInfo={this.props.productInfo}
/>
</div>
<div className="col-sm-6 col-md-6 col-lg-6 productFeatures rounded">
<FeaturesList page={this.props.page}
pageId={this.props.pageId}
productInfo={this.props.productInfo}
/>
</div>
<div className="col-sm-3 col-md-3 col-lg-3 rounded">
<ContactForm page={this.props.page} pageId={this.props.pageId} />
</div>
</div>
<div className="row mx-0 mt-4 mb-2">
<div className="col-sm-12 col-md-12 col-lg-12 bg-info py-2 rounded text-center">
<h5 className="text-white mb-0">You Might Also Like These</h5>
</div>
</div>
<WebVRSuggestion
page={this.props.page}
pageId={this.props.pageId}
suggestions={this.props.suggestions}
/>
</div>
);
}
}
function mapStateToProps(state){
const {isLoading}=state.productloader
return {
productInfo:state.products.productsInfo,
comments:state.comments.comments,
suggestions:state.products.suggestions
}
}
export default connect(mapStateToProps,{getProductInfo,getComments,getSuggestions})(SmartProduct);
这看起来是可以接受的做法。请注意,有时您可以在初始渲染中使用componentWillReceiveProps获得意外结果,但除此之外,这看起来很好。
但是,如果您确实希望代码更具确定性,则可以为所需的每个路径创建更高级别的组件,并在componentDidMount
中调用异步数据函数。这样,您可以更轻松地在路由之间缓存数据。
*编辑:在仔细查看您的代码之后,更高级别的组件可能不适用于您的情况,因为我猜测您将拥有可由此相同组件呈现的不确定数量的产品。 ComponentDidMount
是异步调用的首选方法,因为它只调用一次,而componentWillReceiveProps
被频繁调用,如果你不小心,你最终可能会发送大量不必要的异步请求。看起来你只是在路由发生变化时调用异步函数,所以你不应该有这个问题。
以上是关于是否在componentWillReceiveProps中调用API对路由器参数的更改是否正确?的主要内容,如果未能解决你的问题,请参考以下文章
是否可以判断一个对象是否在不同的 AppDomain 中运行?
是否可以在 Swift 2.1 中检查目录是否为空? [复制]