我是React.js的新手,我正在努力理解React生命周期方法中的几种方法。
到目前为止,我感到有些困惑:
1)
据我了解,之间的差别componentWillUpdate
,并componentWillReceiveProps
是,componentWillReceiveProps
当父改变了道具,我们可以使用的setState(这个孩子里面的setState将被调用componentWillReceiveProps
)。
例如:react-table-sorter-demo
var App = React.createClass({
getInitialState: function() {
return {source: {limit: "200", source: "source1"}};
},
handleSourceChange: function(source) {
this.setState({source: source});
},
render: function() {
return (
<div>
<DataSourceSelectors onSourceChange={this.handleSourceChange} source={this.state.source} />
<TableSorter dataSource={urlForDataSource(this.state.source)} config={CONFIG} headerRepeat="5" />
</div>
);
}
});
在TableSorter中,我们有
componentWillReceiveProps: function(nextProps) {
// Load new data when the dataSource property changes.
if (nextProps.dataSource != this.props.dataSource) {
this.loadData(nextProps.dataSource);
}
}
意味着当我们进行更改时this.state.source
,我们期望componentWillReceiveProps
在TableSorter中被调用。
但是,我不太了解如何componentWillUpdate
在这种情况下使用,定义componentWillUpdate
为
componentWillUpdate(object nextProps, object nextState)
我们如何将nextState从父级传递给子级?还是我错了,nextState是从父元素传递的吗?
2)方法componentWillMount
使我感到困惑,因为在官方文档中,它说
在初始渲染发生之前立即在客户端和服务器上调用一次。
在这种情况下,如果我在此方法中使用setState,它将覆盖getInitialState,因为它只会在最初被调用一次。在这种情况下,在getInitialState方法中设置参数的原因是什么。在这种情况下,我们有:
getInitialState: function() {
return {
items: this.props.initialItems || [],
sort: this.props.config.sort || { column: "", order: "" },
columns: this.props.config.columns
};
},
componentWillMount: function() {
this.loadData(this.props.dataSource);
},
loadData: function(dataSource) {
if (!dataSource) return;
$.get(dataSource).done(function(data) {
console.log("Received data");
this.setState({items: data});
}.bind(this)).fail(function(error, a, b) {
console.log("Error loading JSON");
});
},
项将在最初被覆盖,为什么我们仍需要 items: this.props.initialItems || []
在getInitialState方法中使用?
希望您能理解我的解释,如果有任何提示,请给我一些提示。
1)在React的更新生命周期中componentWillReceiveProps
被调用componentWillUpdate
。您说对了,componentWillReceiveProps
可以打电话给您setState
。另一方面componentWillUpdate
是当您需要响应状态更改时使用的回调。
道具和状态之间的根本区别在于状态是组件的私有属性。这就是父组件或其他任何人都不能操纵组件状态(例如call
setState
)的原因。因此,父子组件关系的默认工作流程如下:
setState
必要时调用2)您提供了一个很好的代码示例来说明差异。设置的默认值getInitialState
将用于初始渲染。loadData
来自的呼叫componentWillMount
会发起一个AJAX请求,该请求可能会成功也可能不会成功-
而且,未知需要多长时间才能完成。到AJAX请求完成并setState
以新状态调用时,该组件将使用默认值呈现在DOM中。因此,在中提供默认状态是很有意义的getInitialState
。
注意:我发现《了解React组件生命周期》一文对理解React的生命周期方法有很大的帮助。
方法的标注和函数类似: struct Owner(i32); impl Owner { // 标注生命周期,就像独立的函数一样。 fn add_one<'a>(&'a mut self) { self.0 += 1; } fn print<'a>(&'a self) { println!("`print`: {}", self.0); } } fn
用法 组件和虚拟 DOM 节点都有生命周期方法,也叫钩子,它们会在 DOM 元素的生命周期的对应时期被调用。 // 组件中的钩子 var ComponentWithHook = { oninit: function(vnode) { console.log("initialize component") }, view: function() { return "hello
本章第一节的内容简单讲解了应用和扩展的区别,本节将为大家讲解应用和扩展的另一大区别,生命周期。 对于扩展来说,如果定义了后台脚本,同时指定persistent属性为true,那么这个扩展只要浏览器运行就会一直运行,除非用户手动去关闭它。如果声明了background权限,则这个扩展会一开机就运行,并且一直运行下去。但是对于应用来说情况会有所不同。 Chrome应用目前不允许使用永久运行的后台脚本(
问题内容: 在哪里进行调用将使我的状态失水的API调用的最佳位置是哪里?构造函数或生命周期方法之一,例如ComponentWillMount? 问题答案: 最好从生命周期方法进行api调用,反应文档也建议相同。 根据DOC: componentDidMount: 挂载组件后立即调用componentDidMount()。需要DOM节点的初始化应该在这里进行。 如果需要从远程端点加载数据,这是实例化
The application module lets you manage the life cycle of your NativeScript apps from starting the application to storing user-defined settings. application模块允许你从启动应用到保存用户自定义设置整个过程进行生命周期管理。 Start Appli
注:本文档提供的生命周期指的是 Universal App 的生命周期,它依赖 rax-app 提供的 runApp方法。 App 级生命周期 launch 在 App 启动时触发 使用生命周期 你可以使用 rax-app 提供的 useAppLaunch 来注册 App 级别的生命周期。 示例: import { useAppLaunch } from 'rax-app'; useAppLa