.netからMVCテンプレートを使用していますが、私は自分のjsonを表示できますが、今はHTMLに解析したいので、テーブルで優先的に解析します。jsonを.netでhtmlに解析する方法
私はHomeController.csからjsonを取得します。これはAbout.cshtmlですが、jsonの文字列なので、恐ろしく見えます。
public class HomeController : Controller
{
public JsonResult TestJson()
{
var client = new WebClient();
var response = client.DownloadString(new Uri("http://localhost:8080/projecten/api/leerlingen"));
var someObject = JsonConvert.DeserializeObject(response);
return new JsonResult() { Data = someObject, JsonRequestBehavior = JsonRequestBehavior.AllowGet };
}
public ActionResult About()
{
var client = new WebClient();
var json = client.DownloadString(new Uri("http://localhost:8080/projecten/api/leerlingen"));
//parse json
ViewBag.Message = json;
return View();
}
}
これはJSON
[{"inschrijvingsNummer":"0001","naam":"John Smith","email":"[email protected]","evaluatieNummer":"270"},
{"inschrijvingsNummer":"0002","naam":"Joe Bloggs","email":"[email protected]","evaluatieNummer":"370"}]
をそれ、私はあなたが基本的に表すクラスを作成する必要があり
@{
ViewBag.Title = "Evaluaties";
}
<h2>@ViewBag.Title.</h2>
<p>@ViewBag.Message</p>
@Shyjuは、はるかに良い –
を探していることになる私はそれを行うための答えを投稿しました。 – Shyju