gpt4 book ai didi

r - utils::browseURL 删除带有 file://urls?

转载 作者:行者123 更新时间:2023-12-04 15:49:59 25 4
gpt4 key购买 nike

在 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 文件?

session 信息如下:

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

最佳答案

我认为这是不可能的。这里的问题是你不能在文件路径中有 ? 。而且查询字符串也是 HTTP 协议(protocol)的一部分,因此在处理本地文件时,查询字符串不会启用。

关于r - utils::browseURL 删除带有 file://urls?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54219477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com