JSONAPI .NET帖子无效

时间:2015-09-18 12:35:59

标签: c# asp.net json-api

我遇到了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生成对服务器的调用。获得通过就好并返回它应该的东西。将POST永远不会定向到任何路由。服务器注意到该呼叫,但捕获POST呼叫的方法没有。

我还为MyClassController编写了默认构造函数。代码在调试器上进行,但之后不再使用PostMyClass方法。

我还尝试了该方法的几个属性,例如[HttpPost]和[Route(...)]。

有趣的是,当我直接从.NET ApiController类继承MyClassController时,POST工作正常,但我没有接收到任何JSON数据,所以我没有任何数据可以使用

任何帮助?

感谢!!!

编辑:

注意到JSONAPI .NET需要它的ApiController基类&#39;必须覆盖方法并用于捕获POST调用。所以现在我可以接收POST调用,但是仍然接收的数据为空,尽管在消息的Body部分发送的原始数据应该是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为空。

0 个答案:

没有答案