在R中,我试图在浏览器中加载本地.html文件,并将查询字符串传递给该文件,然后将由javascript读取该字符串。我正在尝试为此使用utils::browseURL
。当我在R中运行此代码时:
utils::browseURL("https://rstudio.org?a=1")
它会正确打开Rstudio网站的浏览器,并附带查询字符串。但是,当我运行以下代码时:
tf = tempfile(fileext = ".html")
cat("<html><head></head><body>hi</body></html>",file = tf)
url = paste0("file://", tf, "?a=1")
utils::browseURL(url)
它在浏览器中打开文件,但没有查询字符串。我希望像Rstudio URL一样附加“?a = 1”,但不是。
如何打开带有查询字符串的本地.html文件?
下面的会话信息:
R version 3.5.0 (2018-04-23)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: macOS 10.14.2
Matrix products: default
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libRlapack.dylib
locale:
[1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods
[7] base
loaded via a namespace (and not attached):
[1] compiler_3.5.0 tools_3.5.0 packrat_0.4.9-3
答案 0 :(得分:1)
我认为不可能。这里的问题是文件路径中不能有?
。而且查询字符串是HTTP协议的一部分,因此在处理本地文件时,不会启用查询字符串。