I have two questions.
1) can data be submitted in database without validation.If yes then how ?????
2) Can we use javascript in django for validation and if yes then how we post the data in database.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1) use models with all fileds as balnk=True and null=True, and create a simple form without any validation methods.
2)Yes, you can use javascript/jquery to validate your forms and it has nothing to do with django. you can submit the form by two methods,
a) Normal form post
b) Ajax post,