javascript 动作创作者。他们将使用thunk进行redux调度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 动作创作者。他们将使用thunk进行redux调度相关的知识,希望对你有一定的参考价值。

import * as types from "./actionTypes"
import JsonPlaceHolderService from "./service"

export function fetchPosts(){
    return function(dispatch, getState){
        //dispatch an action to show the starte
        dispatch({type: types.POSTS_REQUESTED})
        return JsonPlaceHolderService.getPosts()
            .then(posts =>{                
                dispatch({
                    type: types.POSTS_RECEIVED,
                    payload : posts                    
                })
            })
            .catch(error =>{
                throw(error)
            })
    }
}

以上是关于javascript 动作创作者。他们将使用thunk进行redux调度的主要内容,如果未能解决你的问题,请参考以下文章

在javascript中将日期从“Thu Jun 09 2011 00:00:00 GMT+0530(印度标准时间)”转换为“YYYY-MM-DD”

BZOJ4896 [Thu Summer Camp2016]补退选

从 Vuex 动作和组件更改路由

将动作脚本重写为 javascript

12个非常有用的javascript技巧,必看!

通过javascript将参数传递给动作不会传递整数值