我的Article
模型中有以下字段:
picture_url = models.URLField(null=True)
CCD_ 2是从外部源获得的字典。如果它包含一个图像URL,我想把它保存为我的URL。但是,如果没有来自外部路径的URL,我想引用本地.jpg
作为URL(这样我就可以将其保存到字段中(。如何做到这一点?
from django.templatetags.static import static
if article_as_dict['picture_url']:
url = article_as_dict['picture_url']
else:
url = static('path/to/local/static_file.jpg')
如果我理解正确,它工作,试试