在redux-persist中导入PAUSE的推荐方法是什么?

时间:2017-11-06 22:39:38

标签: redux-persist

我正在使用redux-persist

暂停的一种方法是使用:

persistor.pause();

我希望在我的史诗中停下来。导入PAUSE的推荐方法是什么?

import { PAUSE } from 'redux-persist/lib/constants';
import { PAUSE } from 'redux-persist/es/constants';
import { PAUSE } from 'redux-persist/src/constants';

1 个答案:

答案 0 :(得分:0)

我收到了redux-persist的老板Zack Story的回复。

现在你可以使用这三种中的任何一种。

import { PAUSE } from 'redux-persist/lib/constants';
import { PAUSE } from 'redux-persist/es/constants';
import { PAUSE } from 'redux-persist/src/constants';

将来会是

import { PAUSE } from 'redux-persist';

请检查here以了解更新。