未找到API记录

问题描述 投票:-1回答:1

我建立了这个ID的API,如果找到该ID,它将返回数据。但是,如果找不到该ID,则返回NotFound。当我在邮递员中对其进行测试时,我看到状态为404是否正确?我应该看到找不到退货的文字吗?

Postman Image

[HttpGet]
public IHttpActionResult Read(string type, string id)
 {
    if (id== null)
    {
        return NotFound();
    }
 }
c# asp.net-web-api2
1个回答
0
投票
enter image description here

您在正文中看不到任何东西,因为您的API不会发送正文,而只是发送HTTP标头

© www.soinside.com 2019 - 2024. All rights reserved.