The initial response from my server was not being served and it was due to an error in my React component, however Express did not throw any error. Here is a snippet of what is happening server side. The code got to this point and then silently failed:
res.status(200).send(html(renderToString(
<Provider store={store}>
<RouterContext {...renderProps} />
</Provider>
), store.getState()));
But there was an error in the component render
method. this.props.ui
is no longer defined, so an error should've been thrown. Instead of throwing an error it said nothing and just wouldn't load the page.
return (
<div className={`full-width full-height ${this.props.ui.showBgImage ? 'bg' : ''}`}>
)
Any ideas as to how to get my server to throw an error instead of fail silently?
When you render your page on Server, you have to wrap
try catch
aroundrenderToString
function to catch the errors.For example,