未发送的 Post 请求会抛出“405 method not allowed”
我无法提交发布请求,因为我收到的答复是“不允许 405 方法”。我检查了我的 ssl.conf 和 .htaccess 文件,没有做出这样的限制。可能是什么原因?怎么解决呢?
I am not able to submit a post request as i get back the respose saying "405 method not allowed".I checked my ssl.conf and .htaccess files no such limit has been made.What could be the reason? how to resolve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您正在使用基于类的视图。如果是这样,那么您需要在视图中定义 post 方法或使用 mixin 来执行此操作(例如 django.views.generic.edit.ProcessFormView )。如果您想完全理解为什么这是必要的,请查看 django.views.generic.base.View 的调度方法
https://github.com/django/django/blob/master/django/views/generic/base.py#L56
I suppose you are using class-based views. If so then you need to define post method in your view or use mixin which does it (django.views.generic.edit.ProcessFormView for example). If you want to fully understand why this is necessary then look at dispatch method of django.views.generic.base.View
https://github.com/django/django/blob/master/django/views/generic/base.py#L56