Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个问题。
1)可以在没有验证的情况下将数据提交到数据库中。如果是,那么如何??????
2)我们可以在 django 中使用 javascript 进行验证吗?如果可以,那么我们如何将数据发布到数据库中。
1) 使用所有字段为 balnk=True 和 null=True 的模型,并创建一个没有任何验证方法的简单表单。
2)是的,您可以使用 javascript/jquery 来验证您的表单,它与 django 无关。您可以通过两种方法提交表单,
a) 普通形式的帖子
b)阿贾克斯的帖子,
$.post("url",$(formid).serialize());