1

urls.py

from django.urls import path
from . import views

app_name = "poll"

urlpatterns = [
    path('', views.index, name="index"),  # listing the polls
    path('<int:id>/edit/', views.put, name='poll_edit'), ]

ビュー.py

def put(self, request, id):
    # print("catching error ")  error before this line
    question = get_object_or_404(Question, id=id)
    poll_form = PollForm(request.POST, instance=question)
    choice_forms = [ChoiceForm(request.POST, prefix=str(
        choice.id), instance=choice) for choice in question.choice_set.all()]
    if poll_form.is_valid() and all([cf.is_valid() for cf in choice_form]):
        new_poll = poll_form.save(commit=False)
        new_poll.created_by = request.user
        new_poll.save()
        for cf in choice_form:
            new_choice = cf.save(commit=False)
            new_choice.question = new_poll
            new_choice.save()
        return redirect('poll:index')
    context = {'poll_form': poll_form, 'choice_forms': choice_forms}
    return render(request, 'polls/edit_poll.html', context)

edit_poll.html

{% extends 'base.html' %}
{% block content %}
<form method="PUT" >
    {% csrf_token %}
<table class="table table-bordered table-light">

    {{poll_form.as_table}}
    
    {% for form in choice_forms %}
         {{form.as_table}}
    {% endfor %}
    
    
</table>
    <button type="submit" class="btn btn-warning float-right">Update</button>
</form>
{% endblock content %}

これはエラーです

line 181, in _get_response
    response = wrapped_callback(request, *callback_args, **callback_kwargs)

Exception Type: TypeError at /polls/9/edit/
Exception Value: put() missing 1 required positional argument: 'request'

私はhtmlで引数を渡していないことを知っていますが、htmlでid引数を渡す方法がわかりません。デフォルトのようなコードの1行を助けてください(Djangoによるコンテキスト渡し)

4

1 に答える 1

1

クラスのメソッドではなく、単純な関数を定義しているため、selfパラメーターを削除する必要があります。

# no self ↓
def put(request, id):
    # …

あなたが でやっていることchoice_formsは基本的に aFormSetがすること [Django-doc]であることに注意してください。

于 2021-03-27T20:00:24.623 に答える