当我在运行时使用交互式rmarkdown笔记本时:Shiny我无法在Shiny-Server上使用静态图像的相对路径。例如,说我有:
![](./images/pic1.png)
然后在本地,我可以将图像嵌入:
runtime: shiny
但是当我通过Shiny-server服务时,我无法使用相对路径。
是否可以使用^ # beginning of line
(?!.*\.\.) # negative lookahead that effectively prevents double periods
(?!.*\.$) # negative lookahead that prevents a period as the last character
[^\W] # first character must be a word character
[\w.]{0,29} # from 0 to 29 word characters or periods
$ # end of line
的静态图像使用相对路径,并使用与本地创建相同的约定将其发布到Shiny-server?