Chrome报告请求并取消了304状态代码响应

时间:2019-01-08 15:53:58

标签: asp.net-core google-chrome-devtools

从MVC控制器返回304 Not modified状态代码时:

public IActionResult NotModified()
{
    return StatusCode((int)HttpStatusCode.NotModified);
}

Chrome会将请求标记为已取消,直接处理响应时也会发生同样的情况。我假设这是Chrome的行为。由于文本显示为红色,这似乎是一个错误。其他浏览器仅显示304响应。

enter image description here

这有问题吗,我是否需要进行任何更改才能将其显示为正确的请求?

使用https://httpstat.us/304时,您也可以检查此内容,它与asp.net无关。

0 个答案:

没有答案