मैंने बस स्प्रिंग एमवीसी के वर्षों से आने वाले Django के साथ काम करना शुरू कर दिया और रूपों के कार्यान्वयन को थोड़ा पागल होने के रूप में प्रहार किया। यदि आप परिचित नहीं हैं, तो Django फ़ॉर्म एक फॉर्म मॉडल वर्ग से शुरू होता है जो आपके क्षेत्रों को परिभाषित करता है। वसंत इसी तरह एक फार्म-बैकिंग ऑब्जेक्ट के साथ शुरू होता है। लेकिन जहां स्प्रिंग आपके JSP के भीतर बैकिंग ऑब्जेक्ट के लिए फॉर्म एलिमेंट्स को बाइंड करने के लिए एक टैगलिब प्रदान करता है, वहीं Django के पास सीधे मॉडल से बंधे हुए विजेट हैं। डिफ़ॉल्ट विगेट्स हैं जहां आप CSS लागू करने या नई कक्षाओं के रूप में पूरी तरह से कस्टम विजेट को परिभाषित करने के लिए अपने फ़ील्ड में शैली विशेषताएँ जोड़ सकते हैं। यह सब आपके अजगर कोड में जाता है। यह मुझे पागल लगता है। पहला, आप सीधे अपने मॉडल के बारे में अपने विचार की जानकारी रख रहे हैं और दूसरी यह कि आप अपने मॉडल को एक विशिष्ट दृश्य से जोड़ रहे हैं। क्या मैं कुछ भूल रहा हूँ?
संपादित करें: अनुरोध के अनुसार कुछ उदाहरण कोड।
Django:
# Class defines the data associated with this form
class CommentForm(forms.Form):
# name is CharField and the argument tells Django to use a <input type="text">
# and add the CSS class "special" as an attribute. The kind of thing that should
# go in a template
name = forms.CharField(
widget=forms.TextInput(attrs={'class':'special'}))
url = forms.URLField()
# Again, comment is <input type="text" size="40" /> even though input box size
# is a visual design constraint and not tied to the data model
comment = forms.CharField(
widget=forms.TextInput(attrs={'size':'40'}))
वसंत MVC:
public class User {
// Form class in this case is a POJO, passed to the template in the controller
private String firstName;
private String lastName;
get/setWhatever() {}
}
<!-- JSP code references an instance of type User with custom tags -->
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<!-- "user" is the name assigned to a User instance -->
<form:form commandName="user">
<table>
<tr>
<td>First Name:</td>
<!-- "path" attribute sets the name field and binds to object on backend -->
<td><form:input path="firstName" class="special" /></td>
</tr>
<tr>
<td>Last Name:</td>
<td><form:input path="lastName" size="40" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Save Changes" />
</td>
</tr>
</table>
</form:form>