我有一個django應用程序,允許用戶使用它提交圖像。現在我的模型看起來像在Django中顯示圖像
class Posting(models.Model):
title = models.CharField(max_length=150)
images = models.ForeignKey(Image, null=True)
class Image(models.Model):
img = models.ImageField(upload_to="photos/",null=True, blank=True)
而我試圖在我的模板中顯示圖像,但我似乎無法得到它的工作。我已經去了無數堆棧溢出帖子,並沒有任何運氣。在我的模板中,我有
{ for post in postings }
<img src"{{ post.image.url }} #and many variations of this
但是其他似乎顯示的網址。該網址似乎總是空白。任何幫助將不勝感激!
試試這個 - 因爲你發佈模型有 '圖像' 命名的圖像模型的屬性。 – ancho 2015-03-31 05:19:25
''試試這個。我想問題是相對路徑。追加'/'到路徑。 – 2015-03-31 05:30:43