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

IT技术 reactjs react-redux
2021-05-07 00:45:31

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

2个回答

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);

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

动作/ 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
    };
}

然后在减速器中,按如下方式消费Promise结果:

减速器/减速器_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