我有时间做R& D并且到目前为止一直在玩OWIN.
我想为所有数据交互运行一个OWIN WebAPI服务,
和一个单独的Web前端SPA项目利用角度.
所有代码都是从各种随机博客帖子中无耻地窃取的,它只是为了掌握这种“新技术”.
启动
public class Startup { public void Configuration(IAppBuilder app) { #if DEBUG app.UseErrorPage(); #endif app.UseWelcomePage("/"); // Configure Web API for self-host. HttpConfiguration config = new HttpConfiguration(); config.Routes.MapHttpRoute( name: "DefaultApi",routeTemplate: "api/{controller}/{id}",defaults: new { id = RouteParameter.Optional } ); app.UseWebApi(config); app.Run(context => { if (context.Request.Path.ToString() == "/fail") { throw new Exception("Random exception"); } context.Response.ContentType = "text/plain"; return context.Response.WriteAsync("App Init"); }); } }
AccountsController
public class AccountsController : ApiController { // GET api/<controller>/5 public string Get(int id) { throw new Exception("Random exception"); } }
如果我导航到
[http:// localhost:85 / fail]我得到一个非常性感的错误页面.
但是当我点击[http:// l0calhost:85 / api / accounts / 5]时,错误被公开为json / xml.
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。