ASP.NET Web API和WCF都体现了REST软件架构风格.在REST中,把一切数据视为资源,所以也是一种面向资源的架构风格.所有的资源都可以通过URI来唯一标识,通过对资源的HTTP操作(GET/HEAD.POST.PUT和DELETE),使资源的表征状态发生了改变,即Representational State Transfer,缩写为REST. WCF从3.5以来,也体现了REST的架构风格,但对于一般的消息通信来说,显得"过重",所以,微软推出ASP.NET Web A…
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Demo2017.Models { /* ~/Models/LoginModel.cs */ public class LoginModel { public string Name { get { return "张星"; } } public string Remark { get { retu…