我使用Flux,React和我有组件简单和消息:
>简单:它是一个通过Action调用API的简单组件. Action执行ajax请求并在jqXHR.done()中调度结果.简单有一个更改侦听器等待调度结果.如果结果为null,我想使用我的Messages组件显示错误,所以我调用了MessagesAction.addError(‘我的结果是null’).
>消息:显示应用程序错误的组件.此组件具有更改侦听器,等待显示新消息.它放在我的应用程序的标题中.
当我收到null结果并立即调用Simple组件内的MessagesAction.addError时,会出现问题.事实上,我知道这可能会导致“在调度中间发送”错误,但我不知道如何重构此代码以显示使用Flux的错误消息.
免责声明1:我无法使用setTimeout函数来解决此问题.这不是正确的解决方案.
免责声明2:Simple组件代表app中的任何其他组件,它也将使用Messages组件显示消息.
简单代码:
findUser: function (value) { UserAction.find(value); },componentDidMount: function () { UserStore.addChangeListener(this.updateUser); },updateUser: function(){ var user = UserStore.getUser(); if (user == null){ MessagesAction.addError('My result is null!'); //here occur the error! } else { //set my user with setState } },
消息代码:
componentDidMount: function () { MessagesStore.addChangeListener(this.addMessage); },addMessage: function () { this.setState({ messages: MensagensStore.getMessages() }); },
谢谢!
好吧,问题是(至少在Facebook的Dispatcher实现中)你不能在商店回调中触发任何动作,这会导致不希望的/不可预测的行为,如无限调度或不一致的状态变化(例如竞争条件).这是由于单个广播调度员的性质.
原文链接:https://www.f2er.com/react/301077.htmlIMHO最干净的解决方案(没有闻到waitFor())是在触发组件中引入内部状态.使用状态可以在下一个更新周期中触发消息操作.这样,您就不会遇到未完成调度的问题.
// your component's implementation getInitialState : function(){ return { user : undefined }; } componentWillMount: function () { UserStore.addChangeListener(this.updateUser); },componentWillUnmount: function () { UserStore.removeChangeListener(this.updateUser); },componentDidUpdate : function(){ if(this.state.user == null){ MessagesAction.addError('My result is null!'); // no error anymore! } },updateUser: function(){ this.setState({ user: UserStore.getUser(); }); },