测试API Test Client TestChargingDataController : ApiController { 得到所有数据 [HttpGet] public string GetAllChargingData() { ; } 得到当前Id的所有数据 [HttpGet] public string GetAllChargingData(string id) { + id ; } Post提交 [HttpPost] public bool Post(TB_CHARGING oData) { return true; } Put请求 [HttpPut] public bool Put(TB_CHARGING oData) { return true; } delete操作 [HttpDelete] public bool Delete(string id) { return true; } } 充电对象实体 TB_CHARGING { 主键Id ID { get; set; } 充电设备名称 NAME { get; set; } 充电设备描述 DES { get; set; } 创建时间 DateTime CREATETIME { get; set; } }
至此,组件就搭完了,剩下的就是运行了。我们在url里面敲地址:8080/Help/Index或者:8080/Help就能得到上述效果。还不赶紧试试~~
四、总结上面简单总结了下WebApiTestClient的使用,如果你的WebApi也是一个单独的服务,可以整起来当帮助文档用,省得你自己写。哈哈,不要谢我,请叫我红领巾。欢迎推荐。Demo下载