Closed csliangy closed 6 years ago
Hello @csliangy ! Thank you for using shiny.router.
To fix the application just make small changes:
menu <- (
tags$ul(
tags$li(a(class = "item", href = "/", "Page")),
tags$li(a(class = "item", href = route_link("other"), "Other"))
)
)
and:
router <- make_router(
route("/", root_page),
route("other", other_page)
)
The url no should have form: <app-url>/#!/other
The package is actually on CRAN since about one week. You can find info about latest features on our blog: https://appsilon.com/shiny-router-package/
Fantastic!!! Thanks again. Actually we were using that for several projects and recently we moved it out of our projects due to the aforementioned problems. Now I have the full confidence to bring it back. Thanks again for your amazing contributions.
I was also impressed by https://www.r-bloggers.com/how-we-built-a-shiny-app-for-700-users/ .
Thanks again for your great effort on shiny.router and it worked perfect on our application. But we came across a problem after upgrading to R3.5.0. We also tested the following sample application and we observe the same issue.
Source code:
R version: 3.5.0 or higher
Issues: When we click the "Other", it shows the following error:
BTW, do you have plan to push it to CRAN?