最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - dispatch is not a function TypeError - Stack Overflow

programmeradmin1浏览0评论

I'm new to react-redux and I'm using the react-thunk middleware. I'm getting the error "Uncaught TypeError: dispatch is not a function" whenever I try to run my action creator (by pressing my button). Anyone know what's going on?

src/actions/index.js

function editUserName (newUserName) {
    return {
        type: 'CHANGE_USER_NAME',
        newUserName: newUserName
    }
}

export function editUserNameDelegate () {
    return function (dispatch, getState) {
        return dispatch(editUserName("thunkUser"))
    }
}

src/containers/admin.js

import { editUserNameDelegate } from '../actions/index'
...
<input type="button" onClick={ editUserNameDelegate() } value="edit UserName" />

I'm new to react-redux and I'm using the react-thunk middleware. I'm getting the error "Uncaught TypeError: dispatch is not a function" whenever I try to run my action creator (by pressing my button). Anyone know what's going on?

src/actions/index.js

function editUserName (newUserName) {
    return {
        type: 'CHANGE_USER_NAME',
        newUserName: newUserName
    }
}

export function editUserNameDelegate () {
    return function (dispatch, getState) {
        return dispatch(editUserName("thunkUser"))
    }
}

src/containers/admin.js

import { editUserNameDelegate } from '../actions/index'
...
<input type="button" onClick={ editUserNameDelegate() } value="edit UserName" />
Share Improve this question asked Jan 27, 2017 at 4:42 cidcid 4672 gold badges7 silver badges16 bronze badges 1
  • return function (dispatch, getState) { return dispatch(editUserName("thunkUser")) } in this function you have taken dispatch as argument and in the second line treating as function??? – Shubhranshu Commented Jan 27, 2017 at 4:46
Add a ment  | 

4 Answers 4

Reset to default 6

You're executing the editUserNameDelegate function inside of render, instead of passing it as the onClick handler. You want onClick={editUserNameDelegate} instead.

Also, if you're writing it that way, you need to make sure that the function is bound up to dispatch when you call it. You can do that like:

export default connect(null, {editUserNameDelegate})(MyComponent)

And then pass onClick={this.props.editUserNameDelegate} in your render function.

The store is what provides the dispatch function. So you either need to connect your ponent to the store using something like connect from react-redux (https://github./reactjs/react-redux), or you need to call store.dispatch(editUserNameDelegate()).

You also need to make sure you have added redux-thunk as middleware in your store. See more about redux-thunk here: https://github./gaearon/redux-thunk

You should provide what is src/containers/admin.js function or class?

If it is function ponent you should use onClick={() => editUserNameDelegate()}

If This Error Is As A Result Of Using context you might consider importing it as: const {state, dispatch} = useContext(location of the context)

发布评论

评论列表(0)

  1. 暂无评论