본문 바로가기

프로그래밍/Django개발(MAC OS)

Django Tag 사용하기

반응형

 

Django를 사용해서 Post 앱을 만들때 TAG는 필수죠~

간단하게 서드파티 라이브러리를 가져오셔서 설치하여주시고.

$ pip install django-tagging

 

from tagging.fields import TagField

class <클래스명>(models.Model):
	tag = TagField()
INSTALLED_APPS = [

'tagging.apps.TaggingConfig',

]

위의 순서대로 하셔서 사용하시면 됩니다~

 

https://django-tagging.readthedocs.io/en/develop/#id39

 

Django Tagging — Django Tagging 0.4.6 documentation

Docs » Django Tagging Edit on GitHub Django Tagging A generic tagging application for Django projects, which allows association of a number of tags with any Django model instance and makes retrieval of tags simple. Official releases are made available from

django-tagging.readthedocs.io

 

반응형