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.
2つの質問があります。
1)検証なしでデータベースにデータを送信できます。はいの場合、どのように?????
2)検証のためにdjangoでjavascriptを使用できますか?使用できる場合は、データベースにデータを投稿する方法。
1)すべてのフィールドがbalnk=Trueおよびnull=Trueであるモデルを使用し、検証メソッドを使用せずに単純なフォームを作成します。
2)はい、javascript / jqueryを使用してフォームを検証できますが、djangoとは関係ありません。フォームは2つの方法で送信できます。
a)通常の形式の投稿
b)Ajaxポスト、
$.post("url",$(formid).serialize());