[R] Issues regarding pass parameters

Bert Gunter bgunter@4567 @end|ng |rom gm@||@com
Wed Jan 19 20:17:17 CET 2022


 Shiny is an RStudio created package. RStudio is **not** R. As such,
it is a *non*-standard contributed package, about which the posting
guide (linked below) says:

"For questions about functions in standard packages distributed with R
(see the FAQ Add-on packages in R), ask questions on R-help.
[The link is:
https://cran.r-project.org/doc/FAQ/R-FAQ.html#Add-on-packages-in-R
This gives the list of current _standard_ packages]

If the question relates to a contributed package , e.g., one
downloaded from CRAN, try contacting the package maintainer first. You
can also use find("functionname") and
packageDescription("packagename") to find this information. Only send
such questions to R-help or R-devel if you get no reply or need
further assistance. This applies to both requests for help and to bug
reports."

Note that RStudio maintains its own help resources at:
https://community.rstudio.com/
This is where questions about the TidyVerse, Shiny, ggplot, etc.
should be posted.


Bert Gunter

"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )


On Wed, Jan 19, 2022 at 10:54 AM Vaibhavi Panchotiya
<vaibhavi.panchotiya using ncode.in> wrote:
>
>
>
> Hello I need help In R shiny ,Right now I am passing parameters in Url like these
>
> observe({
>
>
>
> query <- parseQueryString(session$clientData$url_search)
>
>
>
> if (!is.null(query[['fyear']])) {
>
> updateSliderInput(session, "fyear", value = query[['fyear']] )
>
> shinyjs::disable("fyear")
>
> }
>
> if (!is.null(query[['mnt']])) {
>
> updateSliderInput(session, "mnt", value = query[['mnt']] )
>
> shinyjs::disable("mnt")
>
> }
>
> if (!is.null(query[['Typ']])) {
>
> updateSliderInput(session, "Typ", value = query[['Typ']] )
>
> shinyjs::disable("Typ")
>
> }
>
> if (!is.null(query[['Dist']])) {
>
> updateSliderInput(session, "Dist", value = query[['Dist']] )
>
> shinyjs::disable("Dist")
>
> }
>
> if (!is.null(query[['Min']])) {
>
> updateSliderInput(session, "Min", value = query[['Min']] )
>
> shinyjs::disable("Min")
>
>
>
> }
>
>
>
> })
>
> but now the requirement is like that I need to pass not on url but else somewhere for security purpose i hope you understand what i am saying What to do now?
>
> I tried get post method through temporary html file nothing happened.
>
>
>         [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help using r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



More information about the R-help mailing list