有没有办法显示任何媒体,无论类型如何? (特别是在 Django 中?)

发布于 2024-10-02 09:44:12 字数 79 浏览 3 评论 0原文

如果我有 .mp4 文件,它会自动显示视频(Flash?) 如果它是 jpg,它只会显示图像...

编辑:我希望将其嵌入网页中。

If I have a .mp4 file, it will automatically display a video (flash?)
If it's a jpg, it'll just display the image...

Edit: I want this embedded inside a webpage.

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

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

发布评论

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

评论(3

满地尘埃落定 2024-10-09 09:44:12

正如 eternicode 所说,您所需要做的就是以正常方式创建视图并将查询集传递到模板。

在模板中,您所需要做的就是将查询中的内容加载为 /media 的一部分,如 settings.py 中定义的那样

<img src="/media/{{model.object}}" width="135" height="60" alt="thumbnail" />

As eternicode says, all you need to do is make your views the normal way and pass the querysets to your template.

In the template , all you need to do is load the content from your query as part of /media as defined in your settings.py e.g

<img src="/media/{{model.object}}" width="135" height="60" alt="thumbnail" />
ら栖息 2024-10-09 09:44:12

不,您必须有文件视图生成器,

这意味着您有图片和视频列表,然后为每个文件生成正确的播放器并标记

其简单

no, you must have file view generator,

thats mean you have list of pic and video and then for each file generate correct player and tag

its easy

_失温 2024-10-09 09:44:12

您需要在 http 响应标头中指定“Content-Type”。

You need specify the "Content-Type" in the http response header.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文