码迷,mamicode.com
首页 > Windows程序 > 详细

webapi使用swagger出现“Cannot read property 'parameters' of null”

时间:2017-07-12 16:12:55      阅读:1715      评论:0      收藏:0      [点我收藏+]

标签:height   oca   分析   序列化   parameter   使用   net   ons   sof   

前端时间在webapi项目使用swagger来提供接口文档及测试工具,按网上方法(http://wmpratt.com/swagger-and-asp-net-web-api-part-1配置好之后在浏览器控制台出现"Cannot read property ‘parameters‘ of null"错误。

后面发现问题出在//localhost:5645/swagger/docs/v1这个JSON资源上面,序列化出来的JSON,包含了为NULL的字段,导致swagger-ui-min-js出现异常。

进一步分析是因为我项目使用的newtonsoft.json这个库的配置导致,应该忽略为NULL的字段,如下:

//这里使用自定义日期格式
var jsonFormatter = new JsonMediaTypeFormatter();
var settings = jsonFormatter.SerializerSettings;
var timeConverter= new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" };
settings.Converters.Add(timeConverter);
settings.NullValueHandling = NullValueHandling.Ignore;
config.Services.Replace(typeof(IContentNegotiator), new JsonContentNegotiator(jsonFormatter))

webapi使用swagger出现“Cannot read property 'parameters' of null”

标签:height   oca   分析   序列化   parameter   使用   net   ons   sof   

原文地址:http://www.cnblogs.com/yingcheng/p/7155898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!