mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
1.3 KiB
1.3 KiB
如何指定 JSON 序列化器?
请先自行阅读:
默认情况下,本库使用 System.Text.Json
作为 JSON 序列化器。
如果你更习惯于 Newtonsoft.Json
,那么你可以在构造得到 WechatTenpayClient
对象后:
client.Configure(settings =>
{
settings.JsonSerializer = new FlurlNewtonsoftJsonSerializer();
});
此外,如果你希望调整一些序列化器的配置项,那么可以:
using System.Text.Json;
using SKIT.FlurlHttpClient.Wechat;
client.Configure(settings =>
{
var jsonOptions = FlurlSystemTextJsonSerializer.GetDefaultSerializerOptions();
jsonOptions.WriteIndented = true;
settings.JsonSerializer = new FlurlSystemTextJsonSerializer(jsonOptions);
});
使用 Newtonsoft.Json
时也是同样的:
using Newtonsoft.Json;
using SKIT.FlurlHttpClient.Wechat;
client.Configure(settings =>
{
var jsonSettings = FlurlNewtonsoftJsonSerializer.GetDefaultSerializerSettings();
jsonSettings.Formatting = Formatting.Indented;
settings.JsonSerializer = new FlurlNewtonsoftJsonSerializer(jsonSettings);
});