我使用taggit,我想使用django taggit autosuggest自定義窗體(不,我不能使用ModelForm)。但是,無論我做什麼,我都無法在視圖中使自動暗示工作。Django標籤自動建議
這裏是我的(削減)模型:
from taggit_autosuggest.managers import TaggableManager
class Ook(models.Model):
tags = TaggableManager()
這裏是我的(減少)形式:
from taggit.forms import TagField
from taggit_autosuggest.widgets import TagAutoSuggest
class NewOokForm(forms.Form):
#m_tags = TagField() # This works but clearly has no autosuggestion.
m_tags = TagField(widget=TagAutoSuggest('taggit')) # Does not work!
我得到的觀點沒有錯誤,只是沒有標籤建議任何責任。
我在做什麼錯?
我正在使用Django 1.8,這是1.8.7的問題時的最新版本。
你會收到任何錯誤嗎? –
@SandervanLeeuwen:沒有任何錯誤。 – Sardathrion