django 如何在要表单的文本字段中显示默认值。
<input type="text" name="{{ form.username}}" value="{{ costumer.username}}"><p>
它在浏览器中显示了一个文本字段,后跟 couser.username,我想将用户名作为文本字段中的默认值,我该怎么做?
django 如何在要表单的文本字段中显示默认值。
<input type="text" name="{{ form.username}}" value="{{ costumer.username}}"><p>
它在浏览器中显示了一个文本字段,后跟 couser.username,我想将用户名作为文本字段中的默认值,我该怎么做?
对表单使用初始参数:
form = Form(initial={'username': costumer.username})
并在模板中显示输入,您只需要这样:
{{ form.username }}<br/>
https://docs.djangoproject.com/en/dev/ref/forms/api/#dynamic-initial-values
在您看来:
myForm = MyForm(initial={'username': costumer.username })
并在模板中:
{{myForm.username|safe}}
应该做的伎俩。