Django-基于函数的视图(FBV)上不允许使用方法
当我尝试通过AJAX调用提交POST请求时,得到了 405方法不允许
响应:
I am getting a 405 METHOD NOT ALLOWED
response when I am trying to submit a POST request through an AJAX call:
POST / events / profile_update / HTTP / 1.1 405 0
我正在尝试使用最基本的视图进行设置:
I'm trying to set this up with the most basic view:
def profile_update(request):
if request.method == "POST":
name_form =forms.EventName(request.POST)
if name_form.is_valid():
name = name_form.cleaned_data['name']
else:
name_form = forms.EventName()
return render(request, 'event_edit_profile.html', {"name": name})
我的urls.py:
urlpatterns = [
url(r'^(?P<slug>[-\w]+)/update/$', views.EventProfileUpdateView.as_view(), name='event_profile_update'),
url(r'^profile_update/$', views.profile_update, name="profile_update"),
]
A在我的模板中,我正在使用 x可编辑内联编辑来提交请求:
And in my template, I am using x-editable inline editing to submit the request:
<h1 id="name" data-type="text" data-pk="{{ object.id }}" data-url="{% url 'Events:profile_update' %}" data-title="Event Name" data-params="{csrfmiddlewaretoken:'{{csrf_token}}'}">{{ object.name }}</h1>
The request seems to be coming through, and is not being rejected due to CSRF, given that I don't get a 403, but rather a 405:
"POST /events/profile_update/ HTTP/1.1" 405 0
由于某种原因,我似乎无法克服这一点。任何人对什么可能令我感到困惑?
For some reason, I can't seem to get past this. Anyone have any ideas as to what could be screwing me up?
我违反了一条基本规则。解决方法如下:
I broke a basic rule. Here's the fix:
urlpatterns = [
url(r'^profile_update/$', views.profile_update, name="profile_update"),
url(r'^(?P<slug>[-\w]+)/update/$', views.EventProfileUpdateView.as_view(), name='event_profile_update'),
]