Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以选择仅使用 Rikulo 流从特定文件夹中提供文件?我试过了
new StreamServer(uriMapping: _mapping, homeDir: 'my/web/webapp/app')
但我没有得到想要的结果,因为它仍在“web”目录下提供文件。
当使用相对路径指定 homeDir 时,假定它是相对于当前目录 (Directory.current.path)。我认为这不是你所期望的。您可以使用绝对路径进行更好的控制。
检查代码后,我认为相对路径最好基于根目录而不是当前目录。详情请关注第 29期。另请参阅此处的示例应用程序。