未发送的 Post 请求会抛出“405 method not allowed”

发布于 2024-12-17 17:24:42 字数 94 浏览 0 评论 0原文

我无法提交发布请求,因为我收到的答复是“不允许 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷雾森÷林ヴ 2024-12-24 17:24:42

我想您正在使用基于类的视图。如果是这样,那么您需要在视图中定义 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文