我对 JSONAPI .NET 有疑问。
首先,由于没有 JSONAPI .NET 的文档,我无法确定我是否正确完成了所有配置。无论如何,情况如下:
WebApiConfig.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
using System.Web.Http;
using JSONAPI.Json;
using JSONAPI.Core;
namespace MyProjectWebApi
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("application/json"));
JsonApiFormatter formatter = new JsonApiFormatter();
formatter.PluralizationService = new PluralizationService();
config.Formatters.Add(formatter);
GlobalConfiguration.Configuration.Formatters.Clear();
GlobalConfiguration.Configuration.Formatters.Add(formatter);
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
}
}
我在 MyClassController.cs 中有自定义类和控制器:
namespace MyClassCreation
{
[Serializable]
public class MyClass
{
public string Param1 { get; set; }
public string Param2 { get; set; }
public string Param3 { get; set; }
public string Param4 { get; set; }
public MyClass(string param1, string param2, string param3, string param4)
{
Param1 = param1;
Param2 = param2;
Param3 = param3;
Param4 = param4;
}
}
public class MyController : JSONAPI.Http.ApiController<MyClass>
{
public HttpResponseMessage PostMyClass(MyClass newMyClass)
{
try
{
...
}
catch (Exception x)
{
Messages.WriteLog(x);
throw x;
}
}
public IEnumerable<MyClass> GetMyClass(string value)
{
{
List<MyClass> result = new List<MyClass>();
result.Add(new MyClass(value, "2", "3", "4"));
return result;
}
catch (Exception x)
{
Messages.WriteLog(x);
throw x;
}
}
}
}
问题是 GET 有效,但 POST 无效。我使用 Postman 生成对服务器的调用。Get 处理得很好并返回它应该做的。将 POST 永远不会定向到任何路由。服务器注意到调用,但捕获 POST 调用的方法没有。
我还为 MyClassController 编写了默认构造函数。代码在调试器上放在那里,但之后不在 PostMyClass 方法上。
我还尝试了该方法的几个属性,例如 [HttpPost] 和 [Route(...)]。
有趣的是,当我直接从 .NET ApiController 类继承 MyClassController 时,POST 工作,但我没有收到任何 JSON 数据,所以我没有任何数据可以使用。
有什么帮助吗?
谢谢!!!
编辑:
注意到 JSONAPI .NET 要求其 ApiController 基类的方法必须被覆盖并用于捕获 POST 调用。所以现在我可以接收到 POST 调用,但接收到的数据仍然为空,尽管在消息的正文部分中发送的原始数据应该是 JSONAPI 标准 JSON 对象。
public override IList<MyClass> Post(IList<MyClass> postedObjs)
{
return base.Post(postedObjs);
}
数据是:
{
"data": [{
"type": "myClass",
"attributes": {
"param1": "1",
"param2": "2",
"param3": "3",
"param4": "4"
}
}]
}
所以问题是postedObj 是空的。