ajax请求iis上的webapi失败

发布于 2022-09-11 15:58:59 字数 1038 浏览 20 评论 0

问题描述

本地项目ajax请求get post put delete 都正常,部署在iis之后,get post正常,put delete失败,报405(Method not Allowed)

相关代码

    function del(id) {
        $.ajax({
            url: "api/Products/" + id,
            type: "Delete",
            dataType: "json",
            success: function (data) {
                location.reload();
            },
            error: function (XMLHttpRequest, textStatus, errorThrown) {
                alert(XMLHttpRequest + "," + textStatus + "," + errorThrown);
            }
        });
    }
    
    [HttpDelete]
    [ResponseType(typeof(Product))]
    public IHttpActionResult DeleteProduct(int id)
    {
        Product product = db.Product.Find(id);
        if (product == null)
        {
            return NotFound();
        }

        db.Product.Remove(product);
        db.SaveChanges();

        return Ok(product);
    }
    

报错详情:图片描述

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

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

发布评论

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

评论(1

染柒℉ 2022-09-18 15:58:59

问题已解决。
配置文件移除WebDAV协议

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