MVC HttpDelete Verb 导致 405 方法不允许

发布于 2024-09-15 04:08:43 字数 296 浏览 3 评论 0原文

当调用接受删除动词的控制器操作时,我遇到了一个现在允许异常的方法。

我认为问题是 IIS 7.0 中的 HandlerMappings 错误,当我查看时 at:

ExtensionlessUrl-ISAPI-4.0_64bit
ExtensionlessUrl-ISAPI-4.0_32bit
ExtensionlessUrl-Integrated-4.0

果然他们不接受 DELETE 动词。我将其添加到动词列表中,但仍然收到错误,所以我不知道为什么会出现这种情况。任何人都可以阐明这一点吗?

I'm encounting a method now allowed exception when calling a controller action which accepts the Delete verb.

I thought the problem was that the HandlerMappings in IIS 7.0 were wrong and when I looked
at:

ExtensionlessUrl-ISAPI-4.0_64bit
ExtensionlessUrl-ISAPI-4.0_32bit
ExtensionlessUrl-Integrated-4.0

Sure enough they didn't accept the DELETE verb. I added this to the list of Verbs but I am still getting an error so I'm at a loss as to why this is the case. Can anyone shed any light on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

新雨望断虹 2024-09-22 04:08:43

我发现这个问题是由 WebDav 模块引起的。我从 web.config 中删除了它,这解决了问题。

<system.webServer>
 <modules runAllManagedModulesForAllRequests="true">
    <remove name="WebDAVModule" />
 </modules>
</system.webServer>

希望这对其他人有帮助!

I discovered this issue was being caused by the WebDav module. I removed this from my web.config and this resolved the issue.

<system.webServer>
 <modules runAllManagedModulesForAllRequests="true">
    <remove name="WebDAVModule" />
 </modules>
</system.webServer>

Hope this helps someone else!

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