[R] Issues regarding pass parameters

Vaibhavi Panchotiya v@|bh@v|@p@nchot|y@ @end|ng |rom ncode@|n
Tue Jan 18 10:48:20 CET 2022



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]]



More information about the R-help mailing list