0

我正在尝试使用 Giphy API、redux 和 axios 制作一个搜索应用程序,但我认为我在 API 请求中从 API 获取所有搜索结果的地方出错了。

我使用一个动作发出 API 请求,该动作被减速器捕获,但是当我控制台记录减速器内的动作值时,我得到 [object Object] 而不是实际对象。为什么是这样?

我使用 ReduxPromise 作为我的中间件。

这是我在操作代码中的 API 请求:

import axios from 'axios';

export const FETCH_GIPHS = 'FETCH_GIPHS'

export function fetchGiphs(value) {
    const api = "http://api.giphy.com/v1/gifs/search";
    const API_KEY = 'hdUk5buTTISSC29bx2DAXfDRCz6tkcrS';

    const url = `${api}?q=${value}&api_key=${API_KEY}&limit=5"`;

    //http://api.giphy.com/v1/gifs/search?q=rainbow&api_key=hdUk5buTTISSC29bx2DAXfDRCz6tkcrS&limit=5"

    const request = axios.get(url);
    console.log('Request:', request)

    return {
        type: FETCH_GIPHS,
        payload: request
    }
}

和减速机:

export default function(state = null, action) {
    console.log('action recieved: ' + action)
return state;
} 

和我的主要 index.js,我的中间件在哪里

const createStoreWithMiddleware = applyMiddleware(ReduxPromise)(createStore);

ReactDOM.render(
    <Provider store={createStoreWithMiddleware(reducers)}>
        <App />
    </Provider>
, document.getElementById('root'));
4

1 回答 1

1

我认为你的问题是你没有调度你的行动

this.dispatch(this.loadGiphs(0, 3)); 
于 2017-12-12T11:47:40.540 回答