我在操作中使用 axios 。我需要知道这是否是正确的方法。
actions/index.js ==>

import axios from 'axios';
import types from './actionTypes'
const APY_KEY = '2925805fa0bcb3f3df21bb0451f0358f';
const API_URL = `http://api.openweathermap.org/data/2.5/forecast?appid=${APY_KEY}`;

export function FetchWeather(city) {
  let url = `${API_URL}&q=${city},in`;
  let promise = axios.get(url);

  return {
    type: types.FETCH_WEATHER,
    payload: promise
  };
}
reducer_weather.js ==>
import actionTypes from '../actions/actionTypes'
export default function ReducerWeather (state = null, action = null) {
  console.log('ReducerWeather ', action, new Date(Date.now()));

  switch (action.type) {
    case actionTypes.FETCH_WEATHER:
          return action.payload;
  }

  return state;
}

然后将它们合并到 rootReducer.js ==>
import { combineReducers } from 'redux';
import reducerWeather from './reducers/reducer_weather';

export default combineReducers({
  reducerWeather
});

最后在我的React容器中调用一些js文件...
import React, {Component} from 'react';
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {FetchWeather} from '../redux/actions';

class SearchBar extends Component {
  ...
  return (
    <div>
      ...
    </div>
  );
}
function mapDispatchToProps(dispatch) {
  //Whenever FetchWeather is called the result will be passed
  //to all reducers
  return bindActionCreators({fetchWeather: FetchWeather}, dispatch);
}

export default connect(null, mapDispatchToProps)(SearchBar);

最佳答案

我猜你不应该(或者至少不应该)直接在商店里兑现 promise :

export function FetchWeather(city) {
  let url = `${API_URL}&q=${city},in`;
  let promise = axios.get(url);

  return {
    type: types.FETCH_WEATHER,
    payload: promise
  };
}

这样,您甚至都没有使用redux-thunk,因为它返回的是普通对象。实际上,redux-thunk使您能够返回一个函数,稍后将对其进行评估,例如,如下所示:
export function FetchWeather(city) {
  let url = `${API_URL}&q=${city},in`;
  return function (dispatch) {
    axios.get(url)
      .then((response) => dispatch({
        type: types.FETCH_WEATHER_SUCCESS,
        data: response.data
      })).catch((response) => dispatch({
        type: types.FETCH_WEATHER_FAILURE,
        error: response.error
      }))
  }
}

确保正确设置了redux-thunk中间件。我真的建议阅读redux-thunk documentationthis amazing article来加深了解。

关于javascript - 如何在redux-thunk中使用axios/AJAX,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36640527/

10-11 12:02