2016-08-08 21 views

答えて

5

あなたはredux middleware docsの例のように、シンプルなログミドルウェアを使用することができます。

const logger = store => next => action => { 
    console.group(action.type) 
    console.info('dispatching', action) 
    let result = next(action) 
    console.log('next state', store.getState()) 
    console.groupEnd(action.type) 
    return result 
} 

それとも基本的に同じことを行いredux-loggerモジュールを使用します。

関連する問題