zoukankan      html  css  js  c++  java
  • 初识Asp.Net WebApi

    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; }
    }
    }

  • 相关阅读:
    配置hbase
    hive配置
    scala及spark配置
    Eclipse 配置hadoop
    腾讯云部署hadoop
    助教总结
    预习非数值数据的编码方式
    预习原码补码
    学习java的第六周
    作业一总结
  • 原文地址:https://www.cnblogs.com/momjs/p/8360100.html
Copyright © 2011-2022 走看看