1. ホーム
  2. パイソン

[解決済み】Djangoはデフォルトのフォーム値を設定する

2022-04-03 02:48:29

質問

以下のようなモデルを持っています。

class TankJournal(models.Model):
    user = models.ForeignKey(User)
    tank = models.ForeignKey(TankProfile)
    ts = models.IntegerField(max_length=15)
    title = models.CharField(max_length=50)
    body = models.TextField()

また、上記のモデルに対して、以下のようなモデルフォームを用意しています。

class JournalForm(ModelForm):
    tank = forms.IntegerField(widget=forms.HiddenInput()) 

    class Meta:
        model = TankJournal
        exclude = ('user','ts')

その戦車の隠しフィールドにデフォルト値を設定する方法を知りたいのです。以下は、これまでのフォームを表示/保存する私の関数です。

def addJournal(request, id=0):
    if not request.user.is_authenticated():
        return HttpResponseRedirect('/')

    # checking if they own the tank
    from django.contrib.auth.models import User
    user = User.objects.get(pk=request.session['id'])

    if request.method == 'POST':
        form = JournalForm(request.POST)
        if form.is_valid():
            obj = form.save(commit=False)

            # setting the user and ts
            from time import time
            obj.ts = int(time())
            obj.user = user

            obj.tank = TankProfile.objects.get(pk=form.cleaned_data['tank_id'])

            # saving the test
            obj.save()

    else:
        form = JournalForm()

    try:
        tank = TankProfile.objects.get(user=user, id=id)
    except TankProfile.DoesNotExist:
        return HttpResponseRedirect('/error/')

解決方法は?

を使用することができます。 初期 を説明します。 こちら

フォームのコンストラクタを呼び出すときに値を入力するか、2つのオプションがあります。

form = JournalForm(initial={'tank': 123})

またはフォーム定義で値を設定します。

tank = forms.IntegerField(widget=forms.HiddenInput(), initial=123)