当前位置:首页 > Windows程序 > 正文

"application/json"); return hr; } } public class UserModel

2024-03-31 Windows程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;

namespace WebApi.Controllers
{
public class HomeController : ApiController
{
public List<UserModel> allModeList = new List<UserModel>()
{
new UserModel(){ Id=1,UserName="zhang", PassWord="123"},
new UserModel(){ Id=2,UserName="lishi", PassWord="123456"},
new UserModel(){ Id=3,UserName="wang", PassWord="1234567"}
};
[System.Web.Http.HttpPost]
public HttpResponseMessage GetAll()
{
//return allModeList.Count.ToString();
HttpResponseMessage hr = new HttpResponseMessage();
string name = "yangliu";

//List<dynamic> list = new List<dynamic> { new { name = "张三", age = 17 }, new { name = "李四", age = 15 } };
hr.Content = new StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(allModeList), Encoding.UTF8, "application/json");

return hr;

}


}

public class UserModel
{
public int Id { get; set; }
public string UserName { get; set; }
public string PassWord { get; set; }
}
}

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/35084.html

Jm-杰米博客Jamie
草根站长的技术交流乐园!IT不会不要紧快来好好学习吧!
  • 20786文章总数
  • 7494590访问次数
  • 建站天数
  • 友情链接