如何通过redux中的api获取数据?

时间:2016-10-02 04:52:58

标签: reactjs react-redux

我是reactjs / redux的初学者,找不到一个简单易用的如何使用api调用来检索redux应用程序中的数据的示例。我猜你可以使用jquery ajax调用,但有可能有更好的选择吗?

2 个答案:

答案 0 :(得分:48)

的jsfiddle; http://jsfiddle.net/cdagli/b2uq8704/6/

它使用redux,redux-thunk和fetch。

获取方法;

function fetchPostsWithRedux() {
    return (dispatch) => {
    dispatch(fetchPostsRequest());
    return fetchPosts().then(([response, json]) =>{
        if(response.status === 200){
        dispatch(fetchPostsSuccess(json))
      }
      else{
        dispatch(fetchPostsError())
      }
    })
  }
}

function fetchPosts() {
  const URL = "https://jsonplaceholder.typicode.com/posts";
  return fetch(URL, { method: 'GET'})
     .then( response => Promise.all([response, response.json()]));
}

上面使用的动作:

(注意:您可以定义许多操作,例如fetchPostRequest可用于显示加载指示符。或者您可以在不同的HTTP状态代码的情况下分派不同的操作。)

function fetchPostsRequest(){
  return {
    type: "FETCH_REQUEST"
  }
}

function fetchPostsSuccess(payload) {
  return {
    type: "FETCH_SUCCESS",
    payload
  }
}

function fetchPostsError() {
  return {
    type: "FETCH_ERROR"
  }
}

在您的减速机中,您可以将帖子加载到州;

const reducer = (state = {}, action) => {
  switch (action.type) {
    case "FETCH_REQUEST":
      return state;
    case "FETCH_SUCCESS": 
      return {...state, posts: action.payload};
    default:
      return state;
  }
} 

连接后,您可以访问组件中的状态和操作;

connect(mapStateToProps, {fetchPostsWithRedux})(App);

答案 1 :(得分:9)

创建一个操作,您可以在其中执行对API的请求。您可以使用像axios或fetch这样的库来返回一个承诺。

动作/ index.js:

import axios from 'axios';

export const FETCH_SOMETHING= 'FETCH_SOMETHING;
const ROOT_URL = 'http://api.youapi.com';

export function fetchWeather(city) {

    const url = `${ROOT_URL}&q=${aParamYouMayNeed}`;
    const request = axios.get(url);

    return {
        type: FETCH_SOMETHING,
        payload: request
    };
}

然后在reducer中,按照以下方式消耗promise结果:

减速器/ reducer_something.js:

import { FETCH_SOMETHING} from '../actions/index';

export default function(state = [], action) {
    switch (action.type) {
        case FETCH_SOMETHING:
        return [ action.payload.data, ...state ];
    }

    return state;
}

来自Stephen Grider的代码。这是他的回购:https://github.com/StephenGrider/ReduxCasts/tree/master/weather/src