使用 Turbogears2 提供文件

发布于 2024-09-01 00:24:11 字数 199 浏览 2 评论 0原文

如何使用 Turbogears2 提供任意目录中的文件?

我有一个带有本地路径的数据库,例如 /home/myuser/tg2env/MyProject/myproject/files/somefile.jpg

tg.url 似乎只能从公共目录提供服务。

是否有可用的小部件,或者我需要编写某种 DownloadController?

How do I serve files from an arbitrary directory with Turbogears2?

I have a database with the local path, e.g. /home/myuser/tg2env/MyProject/myproject/files/somefile.jpg

tg.url seems to only be able to serve things from the public directory.

Is there a widget available, or do I need to write some sort of DownloadController?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花坊 2024-09-08 00:24:16

好的,我用这个,看起来很有效。

有人有更好的意见吗?

@expose()
@allow_only(predicates.not_anonymous())
def download(self):
    import paste.fileapp
    f = paste.fileapp.FileApp(filepath)
    from tg import use_wsgi_app
    return use_wsgi_app(f)

Ok, I use this and it seems to work.

Anybody have a better opinion?

@expose()
@allow_only(predicates.not_anonymous())
def download(self):
    import paste.fileapp
    f = paste.fileapp.FileApp(filepath)
    from tg import use_wsgi_app
    return use_wsgi_app(f)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文