我完成了我的MERN堆栈应用程序并将其部署到Heroku。在Heroku上将其打开并成功运行。有趣的是,除了我从中部署的机器以外,它在任何其他机器上都不起作用。 在其他任何计算机上打开后,它只会进入空白屏幕,并在控制台中出现以下错误:
redux.js:575 Uncaught TypeError: Cannot read property 'apply' of undefined
at redux.js:575
at u (redux.js:79)
at Module.102 (store.js:9)
at f ((index):1)
at Object.57 (spinner.gif:1)
at f ((index):1)
at a ((index):1)
at Array.e [as push] ((index):1)
at main.4febefcb.chunk.js:1
我正在尝试找出导致此行为的可能原因。
我已经尝试创建一个新的Heroku应用并重新部署它,重新启动dynos并检查我的server.js配置中的端口。
//static assets for production
if (process.env.NODE_ENV === "production") {
//set a static folder
app.use(express.static("client/build"));
app.get("*", (req, res) => {
res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
});
}
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => console.log(`Server is being ran on port ${PORT}`));
我应该在哪里找到问题?
答案 0 :(得分:0)
经过大量调试,我已将问题隔离到Redux开发工具。该应用程序可与任何安装了Redux开发工具的浏览器一起使用。
我发现它与 store.js 文件有关,并检查了我的createStore:
const store = createStore(
rootReducer,
initialState,
compose(
applyMiddleware(...middleware),
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
)
);
从撰写中删除以下行
窗口。 REDUX_DEVTOOLS_EXTENSION && 窗口。 REDUX_DEVTOOLS_EXTENSION ()
我把它推到Heroku上,问题就解决了。