在我的React-Native应用程序(在iOS上),我使用Redux和Redux-Thunk来管理API请求的状态。当我最初加载我的数据时:
componentDidMount() {
this.props.fetchFirstData();
}
该应用程序被卡住了。在我看到的日志中,调度请求待处理操作,但之后没有任何反应。只有在我在屏幕上进行任何触摸交互之后,才会调度请求成功操作并且一切正常。作为一种解决方法,我将这样的函数称为按预期工作:
render() {
if (this.props.requests.length === 0) {
this.props.fetchFirstData();
}
但我想弄明白什么是错的。我的actions.js
看起来像这样,但我不认为错误就在这里。
function foiRequestsError(error) {
return {
type: 'FOI_REQUESTS_ERROR',
error,
};
}
function foiRequestsPending() {
return {
type: 'FOI_REQUESTS_PENDING',
};
}
function foiRequestsSuccess(requests) {
return {
type: 'FOI_REQUESTS_SUCCESS',
requests,
};
}
function foiRequestsFetchData(url) {
return dispatch => {
dispatch(foiRequestsPending());
fetch(url)
.then(response => {
if (!response.ok) {
throw Error(response.status);
}
return response;
})
.then(response => response.json())
.then(requests => dispatch(foiRequestsSuccess(requests)))
.catch(error => dispatch(foiRequestsError(error.message)));
};
}
const ORIGIN = 'XXX';
function foiRequestsFetchFirstData() {
return foiRequestsFetchData(`${ORIGIN}/XXX`);
}
function foiRequestsFetchMoreData(nextUrl) {
return foiRequestsFetchData(`${ORIGIN}${nextUrl}`);
}
export { foiRequestsFetchFirstData, foiRequestsFetchMoreData };
答案 0 :(得分:0)
事实证明远程调试存在问题:https://github.com/facebook/react-native/issues/6679和setTimeout修复了它:
fetch(url)
.then(response => {
if (!response.ok) {
throw Error(response.status);
}
setTimeout(() => null, 0); // workaround for issue-6679
return response;
})