Open mitar opened 11 years ago
page.js and meteor-router support optional arguments like /p/:id/:slug? (slug is optional in this case). But when I use handlebar helper function to get URL {{showP id slug}}, instead of /p/<id>/<slug> I get /p/<id>/<slug>?. So with ? at the end.
/p/:id/:slug?
/p/<id>/<slug>
/p/<id>/<slug>?
?
page.js and meteor-router support optional arguments like
/p/:id/:slug?
(slug is optional in this case). But when I use handlebar helper function to get URL {{showP id slug}}, instead of/p/<id>/<slug>
I get/p/<id>/<slug>?
. So with?
at the end.