2

假设我会在 PHP 中有这个:

<?php

    $year = date('Y');
    $month = date('m');

    echo json_encode(array(

        array(
            'id' => 111,
            'title' => "Event1",
            'start' => "$year-$month-10",
            'url' => "http://yahoo.com/"
        ),

        array(
            'id' => 222,
            'title' => "Event2",
            'start' => "$year-$month-20",
            'end' => "$year-$month-22",
            'url' => "http://yahoo.com/"
        )

    ));

?>

我该怎么做才能在 asp .net 中获得等价物?

就像如果用户去giveMeJson.aspx 我希望它返回与giveMeSomeJson.php.

谢谢

4

3 回答 3

8

在空 .aspx 后面的代码中(使用 Json.Net):

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
    public partial class giveMeSomeJson : System.Web.UI.Page
    {
        protected override void OnLoad(EventArgs e)
        {
            Response.ContentType = "text/json";

            var year = DateTime.Now.Year;
            var month = DateTime.Now.Month;

            Response.Write(JsonConvert.SerializeObject(new[]
                {
                    new
                    {
                        id = "111",
                        title = "Event1",
                        start = String.Format("{0}-{1}-10", year, month),
                        url = "http://yahoo.com/"
                    },
                    new
                    {
                        id = "222",
                        title = "Event2",
                        start = String.Format("{0}-{1}-20", year, month),
                        url = "http://yahoo.com/"
                    }
                }));
        }
    }
}

或者,仅使用 .aspx 中的代码:

<%@ Page Language="C#" %>
<%@ Import Namespace="Newtonsoft.Json" %>
<script runat="server">
    string json = JsonConvert.SerializeObject(new[]
        {
            new
            {
                id = "111",
                title = "Event1",
                start = String.Format("{0}-{1}-10", DateTime.Now.Year, DateTime.Now.Month),
                url = "http://yahoo.com/"
            },
            new
            {
                id = "222",
                title = "Event2",
                start = String.Format("{0}-{1}-20", DateTime.Now.Year, DateTime.Now.Month),
                url = "http://yahoo.com/"
            }
        }); 
</script>
<%= json %>
于 2013-02-27T22:17:46.013 回答
7

无需深入了解在 ASP.NET 中写入输出的各种方法(有很多),您可以使用JavaScriptSerializerJSON.NET 或 JSON.NET 将 .NET 数组序列化为 JSON,然后将其写入输出。

使用 JSON.NET,它是:

Person[] arr = new[] { new Person { Name = "John" }, new Person { Name = "Jane" } };
string json = JsonConvert.SerializeObject(arr);

json现在可以将字符串写入响应。您可以使用Literal控件或<%= %>语法,或直接写入响应对象等。

编辑

最简单的例子是:

<%@ Page Language="C#" %>
<%@ Import Namespace="Newtonsoft.Json" %>

<%
    Person[] arr = new[] { new Person { Name = "John" }, new Person { Name = "Jane" } };
    string json = JsonConvert.SerializeObject(arr);
%>
<%= json %>

这会像 PHP 一样在页面本身上完成所有工作,并将输出写入页面。

于 2013-02-27T21:57:44.197 回答
3

如果您使用的是 ASP.NET MVC,那么

public JsonResult GetSomeJson()
{
    var myModel = getSomeModel
    return Json(myModel);
}

更新-所以网络表单?我不做网络表单,但它就像

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)] 
public MyModel GetSomeJson()
{
  MyModel myModel = getSomeModel;
  return myModel;
}
于 2013-02-27T21:56:14.167 回答