如何从响应中获取中间件上下文?

时间:2019-12-25 14:21:12

标签: typescript asp.net-core asp.net-web-api httpresponse middleware

我通过这样的中间件编写错误消息的详细信息和一些特殊的区域, 当控制器内部存在异常时。

等待context.Response.WriteAsync(errorDetails.ToString());

然后,我正在尝试从TypeScripte端的响应中获取此错误详细信息。当我控制从MVC重新运行的响应时,我没有在响应对象中找到错误详细信息。但是我在Chrome浏览器的“应用程序”标签和“网络”标签中看到了错误的详细信息。如何获取在Controller端在中间件中编写的errordetails?我需要在TypeScript中获取此信息。

enter image description here

enter image description here

0 个答案:

没有答案