モバイル アプリケーションで使用される ASP.Net WEB API プロジェクトを作成しました。として返すのではなく、null プロパティを省略するには、応答 json が必要property: null
です。
これどうやってするの?
モバイル アプリケーションで使用される ASP.Net WEB API プロジェクトを作成しました。として返すのではなく、null プロパティを省略するには、応答 json が必要property: null
です。
これどうやってするの?
でWebApiConfig
:
config.Formatters.JsonFormatter.SerializerSettings =
new JsonSerializerSettings {NullValueHandling = NullValueHandling.Ignore};
または、より詳細な制御が必要な場合は、フォーマッター全体を置き換えることができます。
var jsonformatter = new JsonMediaTypeFormatter
{
SerializerSettings =
{
NullValueHandling = NullValueHandling.Ignore
}
};
config.Formatters.RemoveAt(0);
config.Formatters.Insert(0, jsonformatter);
ASP.NET5 1.0.0-beta7 を使用して、startup.cs ファイルにこのコードを追加しました。
services.AddMvc().AddJsonOptions(options =>
{
options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
});
ASP.NET Core 3.0 の場合、コード内のConfigureServices()
メソッドには次が含まれている必要があります。Startup.cs
services.AddControllers()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.IgnoreNullValues = true;
});
vnext を使用している場合は、vnext Web API プロジェクトで、このコードを startup.cs ファイルに追加します。
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().Configure<MvcOptions>(options =>
{
int position = options.OutputFormatters.FindIndex(f => f.Instance is JsonOutputFormatter);
var settings = new JsonSerializerSettings()
{
NullValueHandling = NullValueHandling.Ignore
};
var formatter = new JsonOutputFormatter();
formatter.SerializerSettings = settings;
options.OutputFormatters.Insert(position, formatter);
});
}