だから私は以下を含むモデルを持っています:
class Place(models.Model):
....
created_by = models.ForeignKey(User)
私の見解はそのようなものです:
class PlaceFormView(CreateView):
form_class = PlaceForm
@method_decorator(login_required)
def dispatch(self, *args, **kwargs):
return super(PlaceFormView, self).dispatch(*args, **kwargs)
request.userにアクセスし、created_byをそのユーザーに設定する方法はありますか?ドキュメントを調べましたが、これに関するヒントが見つからないようです。
`