Django中 form表单的使用
可参考:
http://blog.chinaunix.net/uid-21633169-id-4349923.html
http://blog.sina.com.cn/s/blog_5edae1a1010172xi.html
model层详解
http://blog.chinaunix.net/uid-21633169-id-4322473.html
设置多选一选择框
在mode.py 中
如下:
work_type=models.CharField(verbose_name=u'类型',choice=TOPIC_CHOICES,max_length=20)
然后定义TOPIC_CHOICES数组
TOPIC_CHOICES = (
('leve1', '差评'),
('leve2', '中评'),
('leve3', '好评'),
)
需注意几种forms建立方式不同,实现方法也不同