有没有办法显示任何媒体,无论类型如何? (特别是在 Django 中?)
如果我有 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如 eternicode 所说,您所需要做的就是以正常方式创建视图并将查询集传递到模板。
在模板中,您所需要做的就是将查询中的内容加载为
/media
的一部分,如settings.py
中定义的那样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 yoursettings.py
e.g不,您必须有文件视图生成器,
这意味着您有图片和视频列表,然后为每个文件生成正确的播放器并标记
其简单
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
您需要在 http 响应标头中指定“Content-Type”。
You need specify the "Content-Type" in the http response header.