34

晚上好大家!

我是 React 和 Redux 的初学者,所以如果这听起来很愚蠢,请多多包涵。我正在尝试学习如何在 Redux 中执行一些 API 调用,但进展并不顺利。当我控制台记录来自动作创建者的请求时,承诺值始终是“未定义”,所以我不确定我是否正确执行此操作。

我的目标是从有效负载对象内的数据中获取信息并将它们显示在组件内。在过去的几天里,我一直在努力让它发挥作用,但我完全迷失了。

我正在使用 Axios 和 redux-promise 来处理呼叫。

任何帮助将不胜感激。

这是控制台的输出。

在此处输入图像描述

在此处输入图像描述

动作创建者

import axios from 'axios';
export const FETCH_FLIGHT = 'FETCH_FLIGHT';

export function getAllFlights() {

const request = axios.get('http://localhost:3000/flug');
console.log(request);
  return {
    type: FETCH_FLIGHT,
    payload: request
    };
}

减速器

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

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

零件

import React from 'react';
import { Component } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { getAllFlights } from '../actions/index';
import Destinations from './Destinations';

class App extends Component {

componentWillMount(){
  this.props.selectFlight();
}

constructor(props) {
 super(props);
  this.state = {
 };
}

render() {
  return (
    <div>
    </div>
    );
 }

function mapStateToProps(state) {
 return {
   dest: state.icelandair
  };
}

function mapDispatchToProps(dispatch) {
 return bindActionCreators({ selectFlight: getAllFlights }, dispatch);
}
export default connect(mapStateToProps, mapDispatchToProps)(App);
4

5 回答 5

43

axios是承诺,因此您需要使用它then来获得结果。您应该在单独的文件中请求您的 api,并在结果返回时调用您的操作。

 //WebAPIUtil.js
axios.get('http://localhost:3000/flug')
  .then(function(result){ 
    YourAction.getAllFlights(result)
  });

在您的操作文件中将是这样的:

export function getAllFlights(request) {
  console.log(request);
  return {
    type: FETCH_FLIGHT,
    payload: request
  };
}
于 2016-04-02T00:23:59.543 回答
10

你可以用 thunk 做到这一点。 https://github.com/gaearon/redux-thunk

您可以在您的中调度一个动作,then它会在收到来自 axios 调用的响应时更新状态。

export function someFunction() {
  return(dispatch) => {
      axios.get(URL)
        .then((response) => {dispatch(YourAction(response));})
        .catch((response) => {return Promise.reject(response);});
    };
}

于 2018-01-12T18:29:44.990 回答
6

我也认为最好的方法是使用 redux-axios-middleware。设置可能有点棘手,因为您的商店应该以类似的方式配置:

import { createStore, applyMiddleware } from 'redux';
import axiosMiddleware from 'redux-axios-middleware';
import axios from 'axios';
import rootReducer from '../reducers';

const configureStore = () => {   
  return createStore(
    rootReducer,
    applyMiddleware(axiosMiddleware(axios))
  );
}

const store = configureStore();

您的动作创建者现在看起来像这样:

import './axios' // that's your axios.js file, not the library

export const FETCH_FLIGHT = 'FETCH_FLIGHT';

export const getAllFlights = () => {
  return {
    type: FETCH_FLIGHT,
    payload: {
      request: {
        method: 'post', // or get
        url:'http://localhost:3000/flug'
      }
    }
  }
}
于 2017-07-15T13:16:23.243 回答
5

解决这个问题的最好方法是添加 redux 中间件http://redux.js.org/docs/advanced/Middleware.html来处理所有的 api 请求。

https://github.com/svrcekmichal/redux-axios-middleware是一个可以使用的即插即用中间件。

于 2017-04-19T16:36:52.577 回答
5

我像这样处理这个任务:

import axios from 'axios';

export const receiveTreeData = data => ({
  type: 'RECEIVE_TREE_DATA', data,
})

export const treeRequestFailed = (err) => ({
  type: 'TREE_DATA_REQUEST_FAILED', err,
})

export const fetchTreeData = () => {
  return dispatch => {
    axios.get(config.endpoint + 'tree')
      .then(res => dispatch(receiveTreeData(res.data)))
      .catch(err => dispatch(treeRequestFailed(err)))
  }
}
于 2018-03-15T19:19:45.113 回答