0

django のジェネリック ビューに関する情報を探しています。

オブジェクトのフォームをレンダリングするページが必要です。私のページでは、1 つの送信ボタンでオブジェクトを更新し、別の送信ボタンでオブジェクトを削除したいと考えています。

単一のビューを使用してこれを行うことは可能ですか?

4

1 に答える 1

1

Yes this is possible. It is possible create a view to handle update and delete functionality using both class based views and function based views. You will find it much easier using function based views. (I'm not sure what you mean by 'merge' DeleteView and UpdateView, but if you're talking about inheritance then no you can't do that).

See this question for starters.

于 2013-02-22T14:41:03.150 に答える