0
我製作了組件通知,我希望它的操作和縮減器可供所有應用程序使用。 但我不明白爲什麼我的行爲是說沒有定義。 這裏是表示定義爲什麼我的動作創作者沒有在react redux應用中定義?
import { SHOW_NOTIFICATION, SHOW_NOTIFICATION_FULFILLED } from 'constants/actionTypes'
// notification
const initialState = {
notification: {}
}
export function fetchNotification (data) {
return {
type: 'SHOW_NOTIFICATION',
data: data
}
}
export default function notificationReducer (state = initialState, action) {
switch (action.type) {
case SHOW_NOTIFICATION_FULFILLED: {
return {
...state,
notification: action.data
}
}
}
return state
}
SHOW_FULFILLED
的代碼,但從來沒有使用過有啥錯誤
我認爲你是正確導入它們,在這裏:''常量/ actionTypes''它應該是用'啓動/常數/'或'../常數/' –
不,我在導入它。正確的方式 –