1
我剛創建了一個自定義模板標籤。如何在Django中獲取自定義模板標籤的可選參數?
from django import template
from lea.models import Picture, SizeCache
register = template.Library()
@register.simple_tag
def rpic(picture, width, height, crop=False):
return SizeCache.objects.get_or_create(width=width, height=height, picture=picture, crop=crop)[0].image_field.url
這適用於除可選參數裁切外。可選參數可以設置,但被函數忽略,並且總是設置爲False。
提供模板代碼,你是如何設置可選參數在模板中? –