gpt4 book ai didi

html - 显示来自 django 模板的图像 url

转载 作者:行者123 更新时间:2023-12-04 06:14:39 24 4
gpt4 key购买 nike

这是一个非常基本的问题 -

我有一个名为 Book 的模型,它有一个属性 imageURL(这是一个 charfield)。

我有这个模板代码 -

<text class= "text" id = "bookTitle">{{ book.title|safe }}</text><br/>
<text class= "text" id= "bookAuthor">by {{ book.author|safe }}</text><br/>
<img src= str(book.imageURL) class = "result" />

但是, str(book.imageURL) 总是返回一个 unicode 值(因为那是 Django 模型所做的?) - 我怎样才能得到字符串 url 以便我可以把它放在这里?

谢谢

最佳答案

模板代码无效,试试这个:

<text class= "text" id = "bookTitle">{{ book.title|safe }}</text><br/>
<text class= "text" id= "bookAuthor">by {{ book.author|safe }}</text><br/>
<img src="{{ book.imageURL }}" class = "result" />

关于html - 显示来自 django 模板的图像 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7417775/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com