我需要传递 UserId 作为 Serilog 日志记录的一部分。 为此,我在 AppSettings 中创建了一个具有空值的新变量 UserId,并在 index.razor 中以编程方式设置该值。 下面的代码不起作用,如何在 Appsettings.json 中设置 userId 的值。
应用程序设置.json
"Serilog": {
"Using": [],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "Seq",
"Args": { "serverUrl": "https://logging.mysite.com" }
}
],
"Properties": {
"ApplicationName": "TESTApp",
"Environment": "DEV"
"UserId": ""
}
}
index.razor
protected override async Task OnInitializedAsync()
{
UserName = GetUserId();
Configuration["Serilog:Properties:UserId"] = UserName;
}
我认为您想要更改 json 文件而不是仅更改配置缓存。你可以尝试使用
Newtonsoft.Json
var filePath = "appsettings.json";
var oldjson = File.ReadAllText(filePath);
var jobject = JObject.Parse(oldjson);
jobject["Serilog"]["Properties"]["UserId"] = UserName;
var newjson = jobject.ToString(Newtonsoft.Json.Formatting.Indented);
File.WriteAllText(filePath, newjson);
文件更改后,
builder.Configuration
会自动更改。或者您可以确保在文件更改时重新加载配置。
builder.Configuration.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);