django表单提交到数据库(Django 表单模型选择框如何使用分组)
类别:脚本大全 浏览量:2021
时间:2021-10-02 01:43:59 django表单提交到数据库
Django 表单模型选择框如何使用分组起步
django 表单中有两种字段类型可以使用选择框: choicefield
和 modelchoicefield
。
对于 choicefield
的基本使用是:
|
class expenseform(forms.form): choices = ( ( 11 , 'credit card' ), ( 12 , 'student loans' ), ( 13 , 'taxes' ), ( 21 , 'books' ), ( 22 , 'games' ), ( 31 , 'groceries' ), ( 32 , 'restaurants' ), ) date = forms.datefield() category = forms.choicefield(choices = choices) |
它能渲染出:
使用分组下拉框
还可以使用如下方式生成 <optgourp>
标签:
|
class expenseform(forms.form): choices = ( ( 'debt' , ( ( 11 , 'credit card' ), ( 12 , 'student loans' ), ( 13 , 'taxes' ), )), ( 'entertainment' , ( ( 21 , 'books' ), ( 22 , 'games' ), )), ( 'everyday' , ( ( 31 , 'groceries' ), ( 32 , 'restaurants' ), )), ) date = forms.datefield() category = forms.choicefield(choices = choices) |
能够渲染为:
分组模型下拉框
如果使用的是 modelchoicefield
,那抱歉,django本身没有提供解决方案。
在 https://code.djangoproject.com/ticket/27331 中提供了一个很好的解决方案。
首先为需要分类的类型创建模型,在另一个模型中用外键关联它:
|
from django.db import models class category(models.model): name = models.charfield(max_length = 30 ) parent = models.foreignkey( 'category' , on_delete = models.cascade, null = true) def __str__( self ): return self .name class expense(models.model): amount = models.decimalfield(max_digits = 10 , decimal_places = 2 ) date = models.datefield() category = models.foreignkey(category, on_delete = models.cascade) def __str__( self ): return self .amount |
其次,创建一个新的表单 field
类型:
|
from functools import partial from itertools import groupby from operator import attrgetter from django.forms.models import modelchoiceiterator, modelchoicefield class groupedmodelchoiceiterator(modelchoiceiterator): def __init__( self , field, groupby): self .groupby = groupby super ().__init__(field) def __iter__( self ): if self .field.empty_label is not none: yield ("", self .field.empty_label) queryset = self .queryset # can't use iterator() when queryset uses prefetch_related() if not queryset._prefetch_related_lookups: queryset = queryset.iterator() for group, objs in groupby(queryset, self .groupby): yield (group, [ self .choice(obj) for obj in objs]) class groupedmodelchoicefield(modelchoicefield): def __init__( self , * args, choices_groupby, * * kwargs): if isinstance (choices_groupby, str ): choices_groupby = attrgetter(choices_groupby) elif not callable (choices_groupby): raise typeerror( 'choices_groupby must either be a str or a callable accepting a single argument' ) self .iterator = partial(groupedmodelchoiceiterator, groupby = choices_groupby) super ().__init__( * args, * * kwargs) |
最后,在表单中可以如下进行使用:
|
from django import forms from .fields import groupedmodelchoicefield from .models import category, expense class expenseform(forms.modelform): category = groupedmodelchoicefield( queryset = category.objects.exclude(parent = none), choices_groupby = 'parent' ) class meta: model = expense fields = ( 'amount' , 'date' , 'category' ) |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:http://www.hongweipeng.com/index.php/archives/1790/
您可能感兴趣
- django中间件路径校验(Django中使用Whoosh进行全文检索的方法)
- django学生管理系统搭建(Django实现学员管理系统)
- django url配置失效(解决Django生产环境无法加载静态文件问题的解决)
- django变量怎么使用(django的settings中设置中文支持的实现)
- django后台运行命令(Django框架实现的普通登录案例使用POST方法)
- django怎么创建模板文件(django模板结构优化的方法)
- django 页面传参数(django query模块)
- django登录模块(Django实现单用户登录的方法示例)
- django admin 开发实例(Django给admin添加Action的步骤详解)
- django详情页面获取用户id(Django项目中添加ldap登陆认证功能的实现)
- django数据库详解(Django页面数据的缓存与使用的具体方法)
- django测试服务器静态资源放哪里(Django使用redis缓存服务器的实现代码示例)
- django操作数据库(详解django+django-celery+celery的整合实战)
- django框架基础之路由详解(Django中如何防范CSRF跨站点请求伪造攻击的实现)
- django响应返回的常用方法(Django异步任务之Celery的基本使用)
- django中filter的参数(详解django2中关于时间处理策略)
- 今年考高会很难吗(今年高考会考试吗)
- 盘古开天地 他创造了世界,谁创造了盘古 盘古是伏羲吗(盘古开天地他创造了世界)
- 关于队徽 你了解这些么 二(关于队徽你了解这些么)
- 冬天来了手脚冰凉 真不是因为上辈子你是折翼的天使(冬天来了手脚冰凉)
- 0 1 岁婴儿最强作息指南,照着做养出天使宝宝(01岁婴儿最强作息指南)
- 沪上这16所高校 萌新 礼包开箱 哪一款让你心动(沪上这16所高校萌新)
热门推荐
- 云主机功能描述(云主机有哪些使用优势?)
- vue组件轮播(vue+rem自定义轮播图效果)
- dedecms标签插入时间(dedecms修改按tag标签显示全站相关内容的方法)
- vue创建项目同时引入elementui(Vue Element前端应用开发之开发环境的准备工作)
- python无法拒绝的表白代码教程(很酷的python表白工具 你喜欢我吗)
- SqlServer数据库中文乱码问题解决方法(SqlServer数据库中文乱码问题解决方法)
- js Date对象
- sqlserver怎么显示变量所占字节数(SQL Server中关于基数估计计算预估行数的一些方法探讨)
- python mongodb 基本操作(Python使用pymongo库操作MongoDB数据库的方法实例)
- jquery中filter
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9