0

コントローラーから返された json を解析しています。何らかの理由で、辞書を返すときに、キー要素で "ToString()" を実行する必要があります。そうしないと、エラーが発生します。どうして?。以下のサンプルは、json をシリアル化する正しい方法/最善の方法ですか? ありがとう

コントローラ:

    // JSON
    public ActionResult GizmosJsonObject()
    {
        var gizmo = new Gizmo
        {
            Id = 2343,
            Name = "Some awesome name",
            Quantity = 32,
            IntroducedDate = DateTime.Now
        };

        return this.Json(gizmo);
    }

    public ActionResult GizmosJsonObjectCollection()
    {
        var gizmos = new List<Gizmo>();
        gizmos.Add(new Gizmo
        {
            Id = 102,
            Name = "some name1",
            Quantity = 535,
            IntroducedDate = DateTime.Now
        });

        gizmos.Add(new Gizmo
        {
            Id = 122,
            Name = "some name1",
            Quantity = 135,
            IntroducedDate = DateTime.Now
        });

        gizmos.Add(new Gizmo
        {
            Id = 562,
            Name = "some name1",
            Quantity = 2,
            IntroducedDate = DateTime.Now
        });

        return this.Json(gizmos);
    }

    public ActionResult GizmosJsonListInts()
    {
        var gizmos = new List<int>();
        gizmos.Add(2);
        gizmos.Add(56);
        gizmos.Add(32);

        return this.Json(gizmos);
    }

    public ActionResult GizmosJsonDictionaryInts()
    {
        var gizmos = new Dictionary<int, int>();
        gizmos.Add(23, 123);
        gizmos.Add(26, 227);
        gizmos.Add(54, 94323);

        return this.Json(gizmos.ToDictionary(x => x.Key.ToString(), y => y.Value));
    }

    public ActionResult GizmosJsonDictionaryStrings()
    {
        var gizmos = new Dictionary<string, string>();
        gizmos.Add("key1", "value1");
        gizmos.Add("Key2", "value2");
        gizmos.Add("key3", "value3");

        return this.Json(gizmos);
    }

意見:

<script type="text/javascript">
/*<![CDATA[*/
    $(function () {

        // json object
        $("a.Object").click(function (e) {
            e.preventDefault();
            $.ajax({
                url: '@Url.Action("GizmosJsonObject", "Home")',
                contentType: 'application/json',
                type: 'POST',
                success: function (json) {
                    console.log(json.Id);
                    console.log(json.Name);
                    console.log(json.IntroducedDate);

                    // format date
                    var date = new Date(parseInt(json.IntroducedDate.substr(6)));
                    console.log(date);
                }
            });
        });

        // json object collection
        $("a.ObjectCollection").click(function (e) {
            e.preventDefault();
            $.ajax({
                url: '@Url.Action("GizmosJsonObjectCollection", "Home")',
                contentType: 'application/json',
                type: 'POST',
                success: function (json) {
                    $(json).each(function () {
                        console.log(this.Id);
                        console.log(this.Name);
                        console.log(this.IntroducedDate);

                        // format date
                        var date = new Date(parseInt(this.IntroducedDate.substr(6)));
                        console.log(date);
                    });
                }
            });
        });

        // json list of ints
        $("a.ListInts").click(function (e) {
            e.preventDefault();
            $.ajax({
                url: '@Url.Action("GizmosJsonListInts", "Home")',
                contentType: 'application/json',
                type: 'POST',
                success: function (json) {
                    $(json).each(function (i, e) {
                        console.log(json[i]);
                    });
                }
            });
        });

        // json dictionary of ints
        $("a.DictionaryInts").click(function (e) {
            e.preventDefault();
            $.ajax({
                url: '@Url.Action("GizmosJsonDictionaryInts", "Home")',
                contentType: 'application/json',
                type: 'POST',
                success: function (json) {
                    for (var key in json) {
                        if (json.hasOwnProperty(key)) {
                            var value = json[key];
                            console.log(key);
                            console.log(value);
                        }
                    }
                }
            });
        });

        // json dictionary of strings
        $("a.DictionaryStrings").click(function (e) {
            e.preventDefault();
            $.ajax({
                url: '@Url.Action("GizmosJsonDictionaryStrings", "Home")',
                contentType: 'application/json',
                type: 'POST',
                success: function (json) {
                    for (var key in json) {
                        if (json.hasOwnProperty(key)) {
                            var value = json[key];
                            console.log(key);
                            console.log(value);
                        }
                    }
                }
            });
        });
    });
/*]]>*/
</script>
4

1 に答える 1

0

JSON キーはタイプである必要がありますstring。ここの右側のサイドバーhttp://www.json.org/を参照してください。ペアは string: value の形式を取る必要があると記載されています。


裏付けとして、このドキュメントhttp://www.ietf.org/rfc/rfc4627.txtには次のように記載されています。

2.2. オブジェクト オブジェクト構造は、0 個以上の名前と値のペア (またはメンバー) を囲む中括弧のペアとして表されます。名前は文字列です。各名前の後にコロンを 1 つ付けて、名前と値を区切ります。単一のコンマは、値とそれに続く名前を区切ります。オブジェクト内の名前は一意である必要があります。
于 2012-11-12T07:52:53.320 に答える