5

{JSON を初めて使用します} リソース (ユーザー) の配列を構築し、それをビューに渡す必要があります。以下で行った方法よりも良い方法でしょうか? (デモ)

私のモデルは単純です

public class ScheduleUsers
    {
        public string Resource{ get; set; }
}

私のコントローラーで

var users = new JsonArray(
               new JsonObject(
                new KeyValuePair<string,JsonValue>("id","1"),
                new KeyValuePair<string,JsonValue>("name","User1")),
                new JsonObject(
                new KeyValuePair<string, JsonValue>("id", "2"),
                new KeyValuePair<string, JsonValue>("name", "User2"))
                  );
            model.Resources = users.ToString();
4

2 に答える 2

14

次のように、JSON の結果としてエンティティのリストを返さないのはなぜですか。

public class CarsController : Controller  
{  
    public JsonResult GetCars()  
    {  
        List<Car> cars = new List<Car>();
        // add cars to the cars collection 
        return this.Json(cars, JsonRequestBehavior.AllowGet);  
    }  
} 

自動的に JSON に変換されます。

于 2013-05-31T06:24:01.527 に答える
3

私はこれをやった、これはうまくいく

    JavaScriptSerializer js = new JavaScriptSerializer();
                StringBuilder sb = new StringBuilder();
                //Serialize  
                js.Serialize(GetResources(), sb);



 public List<ScheduledResource> GetResources()
        {
            var res = new List<ScheduledResource>()
                {
                    new ScheduledResource()
                        {
                            id = "1",
                            color = "blue",
                            name = "User 1"
                        },
                    new ScheduledResource()
                        {
                            id = "2",
                            color = "black",
                            name = "User 2"
                        },

                };

            return res;
        }
于 2013-05-31T09:26:41.247 に答える