本文介绍了Django Get ImageField Path的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
模型
image_url = models.ImageField(upload_to="uploads/shows",blank=True,null=True)
我有image_url,我需要使用JSON对象来解析它我的Android应用程序。我只需要图像的URL(绝对/相对)。
I am having image_url which I need to parse it using JSON object to my android application. I only need the URL of the image(absolute/relative).
我尝试过
image_url=myObj.file.url
image_url=myObj.image_url
推荐答案
由@alecxe提供的正确的工作解决方案是
The correct working solution as provided by @alecxe is
image_url =myObj.image_url.url
这篇关于Django Get ImageField Path的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!