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.
モデルでフィールドが 'editable=False' とマークされている場合、生成されたフォームには表示されません。フィールドはどのように初期化され、データベースに保存されますか?
Pythonコードで。たとえば、オブジェクトに編集不可のuserフィールドがある場合:
user
form = MyForm(request.POST) if form.is_valid(): myobj = form.save(commit=False) myobj.user = request.user myobj.save()