- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经通读了建议here和 here但一直无法让它发挥作用。我是 WebApi 的新手,它可以为 GET 工作,但无法执行 PUT。
我应该首先注意,我还没有在 IIS 中托管 thw api,只是直接从 VS 在本地调试。这是个问题吗?
任何人都可以发现我可能做错了什么或错过了什么吗?我正在使用 WebApi2 并安装了 CORS 和 AttributeRouting。正如建议的那样,我打算卸载 WebDav,但查找了它但在任何地方都找不到它,所以我假设我在那里没问题。
所以,这是代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using BLL = MyApp.BLL;
using MyApp.ObjectModel;
using System.Web.Http.Cors;
using AttributeRouting.Web.Http;
namespace MyApp.Web.Controllers
{
[EnableCors("*", "*", "GET,POST,PUT,DELETE")]
public partial class PersonController: ApiControllerBase
{
private readonly BLL.Person PersonBll;
public PersonController()
{
PersonBll = new BLL.Person();
}
// GET api/PersonBrief/5
//[Route("api/PersonBrief/{id}")]
public Person GetBrief(int id)
{
return PersonBll.GetBrief(id);
}
// GET api/Person/5
//[Route("api/Person/{id}")]
public Person Get(int id)
{
return PersonBll.Get(id);
}
// POST api/Person
public Person Post(Person Person)
{
return PersonBll.Add(Person);
}
// PUT api/Person
public IHttpActionResult Put(Person Person)
{
try
{
PersonBll.Update(Person);
return Ok<int>(Person.PersonID);
}
catch (Exception ex)
{
return InternalServerError(ex);
}
}
// DELETE api/Person
public void Delete(int id)
{
PersonBll.Deactivate(id);
}
}
}
GET 工作正常,但 PUT 在尝试从 Chrome 的 PostMan 时给出此错误: “消息”:“请求的资源不支持 http 方法‘PUT’。”
这是 WebApiConfig...
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API routes
config.MapHttpAttributeRoutes();
// Convention-based routing.
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
config.EnableCors();
}
}
如果需要更多信息,我很乐意更新详细信息。我的猜测是我遗漏了一些真正重要的关键概念或其他东西 :) 非常感谢任何帮助,我会标记正确答案。
更新 1::好的,所以在反复尝试之后,我能够确定 PUT 何时工作以及何时不工作……我已经更新了上面的 Controller 代码,以便它包含所有详细信息。基本上,我发现如果我删除我放置在 Get 和 GetBrief 方法上的 AttributeRouting(例如:[Route("api/PersonBrief/{id}")]
),我能够成功 POST、PUT 和 DELETE 到 Controller 中!但我显然将这些属性添加到 Get 和 GetBrief 方法中,以便我可以命中它们。没有这些属性,我会得到模棱两可的错误,因为它不知道要命中哪个。为什么是那些导致问题的,我该如何解决这个问题?
最佳答案
我能够弄明白以防它对其他人有帮助。我的解决方案是将属性路由添加到 Controller 中的每个方法。最终结果签名如下所示,效果很好!
[EnableCors("*", "*", "GET,POST,PUT,DELETE")]
[RoutePrefix("api")]
public partial class PersonController: ApiControllerBase
~~
// GET api/PersonBrief
[Route("PersonBrief")]
public IHttpActionResult GetAllBrief()
// GET api/PersonBrief/5
[Route("PersonBrief/{id}")]
public IHttpActionResult GetBrief(int id)
// GET api/Person
[Route("Person")]
public IHttpActionResult GetAll()
// GET api/Person/5
[Route("Person/{id}")]
public IHttpActionResult Get(int id)
// POST api/Person
[Route("Person/")]
public IHttpActionResult Post([FromBody]Person Person)
// PUT api/Person
[Route("Person/")]
public IHttpActionResult Put([FromBody]Person Person)
// DELETE api/Person
[Route("Person/{id}")]
public IHttpActionResult Delete(int id)
关于rest - 带有 CORS 和 AttributeRouting 的 ASP.NET Web API2 中不允许使用 HTTP PUT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24007049/
我想使用 AttributeRouting使用 Orchard CMS。为此,我需要实现 IRouteProvider使用返回 Orchard 列表的方法 RouteDescriptor s。 我需要
我正在尝试做全属性路由,没有常规路由,并试图根据当前域告诉我的路由它们属于哪个区域。 在约定路由中,我可以以此为例指定我的对象约束: context.MapRoute( "MyRouteNam
所以我有一个项目使用默认的Route routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}",
我正在处理我的第一个 MVC 项目并在我的 Controller 中使用属性路由。我的一项操作有一个小问题,它有两个可能的路线路径。路线本身正在工作,但正在生成的 actionLinks 不符合我的喜
我有两个 Controller ,ItemsController 和 SingleItemController,它们都继承自 ApiController。两者都在 Controller 上定义了 Ro
我刚刚在我的 WebAPI 项目上更新了(从 v3.x)到最新版本的 AttributeRouting,它刚刚开始产生我以前从未见过的错误。 现在,每当调用 API 时,我都会收到如下错误: Syst
我们正在使用 Areas 对用 ASP.NET MVC3 编写的 API 进行版本控制,并使用 AttributeRouting 来定义我们的路由。 现在我们有一个“v1”区域,这是我们的第一个 AP
我正在按照此处概述的想法创建一些集成测试: http://www.strathweb.com/2012/06/asp-net-web-api-integration-testing-with-in-m
我正在尝试在 asp.net webapi 上使用 CustomHttpControlSelector 和 AttributeRouting 来实现 api 版本控制。 我想要做的是通过它的命名空间来
我在获取我的 WebAPI 接受的日期范围查询时遇到了一些问题。据我所知,从我读过的所有内容来看,这应该是可行的,但我仍然收到 400 Bad Request 响应。 我的 API 路由如下所示:
我刚刚开始使用 AttributeRouting使用我的 ASP.NET MVC3 应用程序。我一开始根本没有 Controller 。 (新的空 MVC3 应用程序) 然后我做了一个区域。 (称为:
当使用 AttributeRouting 而不是 WebAPI 使用的默认 RouteConfiguration 时,如何设置要使用的默认 Controller 。即摆脱注释代码部分,因为在使用 At
我最近开始为我的操作方法使用属性路由,并且正在努力从 RouteData 获取操作名称(和/或 ID)。下面是我如何使用 attrubues 的示例: [Route( "Edit/{id:int}"
所以我一直在研究这个问题,但我找不到解决我的问题的方法 我有一个 MVC4/Web API 应用程序,我正在使用 AttributeRouting 3.5.6 我的应用运行良好。 我能够使用以下响应对
长话短说 我需要一种方法来在我的 MVC 应用程序中根据用户的属性生成 URL 时以编程方式选择选择哪个 RoutePrefix 不是 TL;DR 我有一个 MVC 4 应用程序(带有 Attribu
我们有一个 MVC 项目,我正在尝试更新该项目以包含 WebApi。为了获得所需的路由,我们使用了 AttributeRouting。除了返回 405 的 [PUT] 之外,所有调用似乎都正确路由。我
我刚刚一直在研究一种新的 Controller 操作方法,我有点困惑为什么会看到 405。 我已经在我的 API 上定义了几个 GET 属性方法,它们都按预期运行。例如,这很好用: [GET(
我有以下代码 [HttpGet] [Route("publish/{id}")] public IHttpActionResult B(string id, string publishid=null
我想根据 Accept header 中请求的媒体类型选择我的 Controller 的操作。 例如,我有一个名为主题的资源。其指定路线为: GET /subjects/{subjectId:int}
我已经通读了建议here和 here但一直无法让它发挥作用。我是 WebApi 的新手,它可以为 GET 工作,但无法执行 PUT。 我应该首先注意,我还没有在 IIS 中托管 thw api,只是直
我是一名优秀的程序员,十分优秀!