我正在尝试将我的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')
}
}
有关为何会发生这种情况的任何提示将受到赞赏:)