📜  访问表单 django 的字段值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:59.747000             🧑  作者: Mango

代码示例1
>>> data = {'subject': 'hello',
...         'message': 'Hi there',
...         'sender': 'foo@example.com',
...         'cc_myself': True}
>>> f = ContactForm(data)
>>> f.is_valid()
True
>>> f.cleaned_data
{'cc_myself': True, 'message': 'Hi there', 'sender': 'foo@example.com', 'subject': 'hello'}