调用调度时出现此错误。
Unhandled Rejection (TypeError): dispatch is not a function
这是我的动作创建者代码,在这里我遇到了错误。
export function getStatus(requestId) {
return async dispatch => {
let url = GET_UPLOADED_STATUS_URL + requestId;
let response = await get(url);
const timeout = setTimeout(getStatus(requestId), 2000);
if (response.status === 200) {
let total = response.payload.count;
let totalCompleted = response.payload.uploadCompleted
dispatch({
type: UPDATE_PROGRESS_BAR_STATUS,
total: total,
completed: totalCompleted
})
if (!response.payload == "") {
toastr.info(`Total processed ${totalCompleted}`);
}
if (response.payload === "") {
dispatch({
type: SHOW_PROGRESS_BAR,
data: false
})
clearTimeout(timeout);
}
} else {
clearTimeout(timeout);
dispatch({
type: SHOW_PROGRESS_BAR,
data: false
});
}
}
}
如您所见,我每两秒钟调用一次此操作,它可以在第一次执行时正常工作,但在第二次通过上述错误执行时,同时调度UPDATE_PROGRESS_BAR_STATUS。 并在控制台中收到此错误。
Uncaught (in promise) TypeError: dispatch is not a function
at _callee3$ (index.js:100)
有人可以指导我在这里做错什么或为什么出现此错误的原因。感谢您的帮助。
这是我更新的代码,其中我如何调用getStatus()操作。
export function uploadFileFolder(arrayofFile, jdId) {
return async dispatch => {
dispatch({
type: REQUEST_INITIATED
});
let url = UPLOAD_FILE_FOLDER_URL + jdId;
let response = await post(url, arrayofFile);
if (response.status === 200) {
dispatch({
type: REQUEST_SUCCESSED
});
history.push({
pathname: "/file-list/" + jdId
});
toastr.success(response.payload.message);
dispatch({
type: SHOW_PROGRESS_BAR,
data: true
});
let requestId = response.payload.requestId;
dispatch(getStatus(requestId));
} else {
dispatch({
type: REQUEST_SUCCESSED
});
}
}
}
和uploadFileFolder()操作我通过单击组件中的按钮来调用它。
答案 0 :(得分:1)
您收到此错误,是因为每2秒调用一次getStatus()操作时未得到调度。正如您所说的,它在第一次执行时可以正常工作,但是在第二次调用时却遇到了错误,因为第二次没有得到调度。因此,您需要按如下所示更新代码。
const timeout = setTimeout(dispatch(getStatus(requestId), 2000));
答案 1 :(得分:0)
我认为连接代码有问题。我不确定您如何连接它。请遵循此。希望它能工作。
//YOUR COMPONENT FILE
import {uploadFileFolder} from 'path/to/your/uploadFileFolderFile'
export class YourComponent .... {
//Your Component Code
onButtonClick() {
//OtherCode
this.props.uploadFileFolder(arrayofFile, jdId)
}
}
const mapStateToProps = (state) => {
return {
};
};
export default connect(mapStateToProps, { uploadFileFolder })(YourComponent);
//Action File
export const uploadFileFolder => (arrayofFile, jdId) => {
return async dispatch => {
//...Rest of the code
};
}