«django-1.2» 태그된 질문

4
동일한 모델의 다른 필드를 기반으로하는 Django 모델 필드 기본값
주제 이름과 이니셜을 포함하고 싶은 모델이 있습니다 (데이터는 다소 익명화되고 이니셜로 추적 됨). 지금 내가 쓴 class Subject(models.Model): name = models.CharField("Name", max_length=30) def subject_initials(self): return ''.join(map(lambda x: '' if len(x)==0 else x[0], self.name.split(' '))) # Next line is what I want to do (or something equivalent), but doesn't work with …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.