博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#返回JSON格式数据
阅读量:5154 次
发布时间:2019-06-13

本文共 816 字,大约阅读时间需要 2 分钟。

又类的属性生成json格式数据

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace MV4项目学习.Controllers{    public class HlhController : Controller    {        // GET: Hlh        public JsonResult Index()        {            ViewData["app"] = "mlh1421";            ViewBag.name = "qwer";            //return View();            List list = new List();            list.Add(new A { Name = "mlh", Age = 12 });            return Json(list,JsonRequestBehavior.AllowGet);        }        public ActionResult Mlh()        {            return View("Show");        }    }    class A    {        public string Name        {            get;set;        }         public int Age        {            get;            set;        }    }}

 

转载于:https://www.cnblogs.com/mlh1421/p/10749983.html

你可能感兴趣的文章
Vue.js 基础学习之组件通信
查看>>
lr_start_transaction/lr_end_transaction事物组合
查看>>
每天一个Linux命令 - 【chkconfig】
查看>>
△UVA10106 - Product(大数乘法)
查看>>
golang (7) 文件操作
查看>>
关于 Object.defineProperty()
查看>>
免认证的ssh登录设置
查看>>
[转] Maven 从命令行获取项目的版本号
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
Java Development Environment in Linux: Install and Configure Oracle
查看>>
Delphi XE2 update4 很快就要来了
查看>>
Mac 关机卡住
查看>>
ssm开发随笔
查看>>
fidder使用
查看>>
circos的ubuntu和mac安装
查看>>
C - Heavy Transportation
查看>>
ubuntu的home目录下,Desktop等目录消失不见
查看>>
建立,查询二叉树 hdu 5444
查看>>
[Spring框架]Spring 事务管理基础入门总结.
查看>>