目前,我有一个工具设置,可以按照automatic exclusion of nuisance columns发布的建议启动Mongod
。
然而,问题在于,当我在启动之前配置设置以运行此mongod
工具时,它将不会运行我的React
脚本,因为{{1}没有“成功完成” }}。
这有什么办法吗?换句话说,我可以export const fetchReminders = () => dispatch => {
fetch(serverroute + 'reminders/', {
headers: {
'Authorization': 'Basic ' + userCredential
}
})
.then(res => res.json())
.then(reminders => dispatch({
type: FETCH_REMINDERS,
payload: reminders.results
}));
};
与我的配置一起启动但不会阻止我的脚本运行直到它“完成”吗?