码迷,mamicode.com
首页 > 其他好文 > 详细

django返回展示一张图片

时间:2019-10-30 18:04:07      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:中间   arp   charm   ati   pycharm   服务   接口   --   tle   

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:\Users\18309\PycharmProjects\untitled\static\img\123.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返回展示一张图片

标签:中间   arp   charm   ati   pycharm   服务   接口   --   tle   

原文地址:https://www.cnblogs.com/liuzhanghao/p/11766460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!