我最初试图强迫我的闪亮应用程序在Edge中启动
options(browser = "C:/Windows/SystemApps/Microsoft.MicrosoftEdge_8wekyb3d8bbwe/MicrosoftEdge.exe")
runApp(shinyApp(ui, server))
此外,我甚至无法使用此路径到exe命令行从Windows命令行启动Microsoft Edge,而是必须在命令行中使用它:
start microsoft-edge:
但是你不能用R的system()
以这种方式发射边缘:
> system("start microsoft-edge:")
Warning message:
running command 'start microsoft-edge:' had status 127
有关如何使用Microsoft边缘与R的任何想法?
你可以使用Edge
system("cmd.exe", input="start microsoft-edge:")