-
Couldn't load subscription status.
- Fork 42
Open
Description
I'm keen to understand best practices for passing url params from the express route handler to the component being rendered server side. Currently, it looks as though the only way the is achievable is by using custom express routes when required or a hacky url split inside the static component method.
eg.
GET http://www.myapp.com/posts/:id (req.params.id required to load post 10 from external endpoint)
import { getPost } from './actions/post'
...
static fetchData(store) {
// param 10 required from request url
return store.dispatch(getPost(:id))
}
Any thoughts on this?
Metadata
Metadata
Assignees
Labels
No labels