I'm really don't understand how we can fetch data from DB in universal (isomorphic) server-side rendering react application. We can't do it in componentWillMount() etc... because it's javascript, working in client-side! No any connection to DB. How else?
I need rendered html with data from DB. Server should return HTML with data. Actions working on promises, that's why they don't return data before rendering.
React fetching data with ajax-requests. But do we need send multiple ajax-requests to render one page?...
Well, it's very confusing.