大家晚上好!
我是React和Redux的初学者,所以如果听起来完全愚蠢的话,请耐心等待。我试图了解如何在Redux中执行一些API调用,但它并不是很好。当我控制记录来自动作创建者的请求时,承诺值总是"未定义"所以我不确定我是否正确地这样做了。
我的目标是从有效负载对象内的数据中获取信息并将其显示在组件内。我过去几天一直试图让这个工作起来,我完全迷失了。
我使用Axios for and 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);
答案 0 :(得分:25)
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
};
}
答案 1 :(得分:5)
你可以用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);});
};
}
答案 2 :(得分: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)))
}
}
答案 3 :(得分:4)
解决此问题的最佳方法是添加redux中间件http://redux.js.org/docs/advanced/Middleware.html以处理所有api请求。
https://github.com/svrcekmichal/redux-axios-middleware是一个可以使用的即插即用中间件。
答案 4 :(得分:3)
我还认为最好的方法是使用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'
}
}
}
}