public ActionResult Hello()
{
var aboutMe = new AboutMe()
{
Name ="余文清",
Age=24,
Email ="980678637@qq.com",
Gender ="男",
Hobbies =new[] { "movie", "NBA","DIY", "Photography", "music" },
Skills = new[] { "HTML5", "CSS3", "JavaScript", "angular","C#", "sql", "python" },
Social = new Social()
{
Github = "https://github.com/2014fighting",
Weibo = "http://weibo.com/234228673",
Wechat="wenqing_vicky",
Blog = "http://siyouku.cn",
Zhihu = "https://www.zhihu.com/people/ge-bi-lao-wang-12-19"
}
};
return Json(aboutMe);
}
{
"name": "余文清",
"age"=24,
"gender": "男",
"email": "980678637@qq.com",
"skills": ["HTML5", "CSS3", "JavaScript", "angular","C#", "sql", "python"],
"hobbies": ["movie", "NBA","DIY", "Photography", "music"],
"social": [
{
Github = "https://github.com/2014fighting",
Weibo = "http://weibo.com/234228673",
Wechat="wenqing_vicky",
Blog = "http://siyouku.cn",
Zhihu = "https://www.zhihu.com/people/ge-bi-lao-wang-12-19"
}
]
}