我建立了这个ID的API,如果找到该ID,它将返回数据。但是,如果找不到该ID,则返回NotFound。当我在邮递员中对其进行测试时,我看到状态为404是否正确?我应该看到找不到退货的文字吗?
[HttpGet] public IHttpActionResult Read(string type, string id) { if (id== null) { return NotFound(); } }
您在正文中看不到任何东西,因为您的API不会发送正文,而只是发送HTTP标头