# 1.models.py ... sex = models.ChoiceField( choices=[ (1, "男"), (2, "女") ] ) # index.html ... {{ 模型类对象.get_sex_display }} # 显示男女,而非1,2;
时间: 2024-11-06 03:35:46
# 1.models.py ... sex = models.ChoiceField( choices=[ (1, "男"), (2, "女") ] ) # index.html ... {{ 模型类对象.get_sex_display }} # 显示男女,而非1,2;