django返回展示一张图片
Posted liuzhanghao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django返回展示一张图片相关的知识,希望对你有一定的参考价值。
urlpatterns = [ path(‘admin/‘, admin.site.urls), # 使用django返回一张土图片的时候需要间接的访问一个中间接口,是html页面的中的img的src自己去请求服务器的后台的一个接口,这个时候就需要用到模板自己的反向解析了 url("^go_html/$", views.go_html), url("^show_log/$", views.show_logo, name="image"), ] -------------------------------------------------------------------------------------- def show_logo(request): path = r"C:Users18309PycharmProjectsuntitledstaticimg123.jpg" file_one = open(path, "rb") return HttpResponse(file_one.read(), content_type=‘image/jpg‘) def go_html(request): return render(request, "show_img.html") --------------------------------------------------------------------------------------- <div style="width: 200px; height: 200px; background-color: gray"> <img src="{% url ‘image‘ %}" alt="图片"> </div><div style="width: 200px; height: 200px; background-color: gray"> <img src="{% url ‘image‘ %}" alt="图片"> </div>
以上是关于django返回展示一张图片的主要内容,如果未能解决你的问题,请参考以下文章