2

我已经开始使用 FastJSON,但在使用它时遇到了一些问题。我在互联网上找不到任何指南或文档,只能在 CodeProject 中找到一点摘录。

例如:我有这个类:

[Serializable]
public class Prueba
{
    public Prueba()
    {
        prueba1 = 5;
        prueba2 = 6;
        prueba3 = "Hola";
    }

    public int prueba1 { get; set; }
    public int prueba2 { get; set; }
    public string prueba3 { get; set; }
}

如果我执行fastJSON.JSON.ToJSON(new Prueba())我得到这个字符串:

{"$types":{"WebApplication3.Prueba, WebApplication3, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null":"1"},"$type":"1","prueba1":5," prueba2":6,"prueba3":"Hola"}

但我期待这个字符串:

"{"prueba1":5,"prueba2":6,"prueba3":"Hola"}"

如您所见,它在字符串中包含了一些我不想要的程序集信息。我试过玩 JSONParameters 类,但我没有看到这种情况的任何属性。

所以...你知道如何配置吗?您是否知道互联网上的任何指南或文档以很好地了解 fastJSON 的工作原理?

非常感谢,问候

4

1 回答 1

9

尝试设置 UseSerializerExtension为 false:

就像是:

fastJSON.JSON.Instance.UseSerializerExtension = false;
fastJSON.JSON.ToJSON(new Prueba());

编辑

看起来API已经改变了。你现在需要传递一个实例JSONParameters

像这样

fastJSON.JSON.ToJSON(new Prueba(), new JSONParameters(){UseExtensions = false});
于 2017-05-17T08:48:28.180 回答