servicestack.text将数组反序列化为对象

时间:2012-11-13 09:39:18

标签: c# .net servicestack

我使用ServicStack进行REST-Service构建,在一次调用中,用户可以发送不同类型的值。所以我在C#类型对象中创建了属性。

发送的JSON如下所示:

{"name":"ffff","params":[{"pId":1,"value":[624,625]},{"pId":2,"value":"xxx"}]}

“值”部分:[624,625]导致字符串对象填充“[624,625]”。我希望得到一个int数组或至少一个字符串数组,但它是纯字符串。 我设置了JsConfig.TryToParsePrimitiveTypeValues = true,但这似乎没有任何效果。

我尝试了github的最新资源。

这可以通过任何开关组合完成,还是我必须自己解析?

由于

编辑:

这是一些测试代码:

[TestMethod]
public void JsonTest()
{
    string json = "{\"name\":\"ffff\",\"params\":[{\"pId\":1,\"value\":[624,625]},{\"pId\":2,\"value\":\"xxx\"}]}";

    var x = JsonSerializer.DeserializeFromString<xy>(json);
    Assert.AreEqual(x.Params[0].Value.GetType(), typeof(int[]));
}

public class xy
{
    public string Name { get; set; }

    public List<Param> Params { get; set; }
}

public class Param
{
    public int PId { get; set; }

    public object Value { get; set; }
}

1 个答案:

答案 0 :(得分:1)

如果按如下所示将“Value”的类型更改为int数组,则ServiceStack将序列化为int数组。

    public class Param
    {
        public int PId { get; set; }

        public int[] Value { get; set; }
    }

以下单元测试通过:

    [TestMethod]
    public void JsonTest()
    {
        string json = "{\"name\":\"ffff\",\"params\":[{\"pId\":1,\"value\":[624,625]},{\"pId\":2,\"value\":\"xxx\"}]}";

        var x = JsonSerializer.DeserializeFromString<xy>(json);
        Assert.AreEqual(x.Params[0].Value.GetType(), typeof(int[]));
        // Show that we have some integers
        Assert.IsTrue(x.Params[0].Value.Count()>0);
    }

如果由于任何原因无法更改Value的类型,则可以根据需要使用ServiceStack.Text将字符串序列化为数组。