isomorphic-fetch(npm)在isomorphic中失败,只返回“pending”promise

时间:2016-04-08 06:04:20

标签: node.js redux isomorphic-javascript

我正在尝试将我的React应用程序变成同构应用程序,一切似乎都很好,并且发生了非常奇怪的事情。

import fetch from 'isomorphic-fetch'
import request from 'axios';

以下情况失败,因为isomorphic-fetch仅返回“待定”承诺

export function fetchPosts() {
    return {
        type:    RECEIVE_POSTS,
        promise: fetch(POSTS_URL + '?_embed=comments')
    }
}

传递了以下案例,因为axios返回数据

export function fetchPosts() {
    return {
        type:    RECEIVE_POSTS,
        promise: request.get(POSTS_URL + '?_embed=comments')
    }
}

有关为何会发生这种情况的任何提示将受到赞赏:)

0 个答案:

没有答案