在 saga 中调用 React Redux Toastr

Call React Redux Toastr within a saga

我正在使用 React Boilerplate with React Redux Toastr and I want to be able to call a toastr using React Intl 的消息。

我曾尝试在组件内调用它,但是当 toastr 进行状态更新时,Reacts 警告我这是一种反模式。我也试过在传奇中打电话,但我无法包含国际消息。

toastr.error(formatMessage(messages.userNotFoundErrorLabel));

使用国际化消息调用 toastr 并充分利用 redux 的最佳位置是什么?

这可以在 Component 的 componentDidUpdate 函数中完成而不会出现警告。