what is the difference between Django form and html form
问题 I am working my django projects based on html form submission method . But recently, I came to know that there exist django forms. Please let me know what is the difference between them. 回答1: Writing a form in Django will ultimately produce a HTML form. The Django form can be bound to a model which will then apply validation to the form based on the model structure, this saves on having to manually code the validation and also helps keep everything aligned when changes are made to the model.