这是一个非常基本的问题 -
我有一个名为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以便我可以把它放在这里?
由于
答案 0 :(得分:2)
模板代码无效,请尝试以下方法:
<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" />