如何在 Blazor 服务器端以编程方式设置应用设置值

问题描述 投票:0回答:1

我需要传递

UserId
作为 Serilog 日志记录的一部分。为此,我在应用程序设置中创建了一个具有空值的新变量
UserId
,并在
index.razor
中以编程方式设置该值。

此处显示的代码不起作用。如何设置

userId
appsettings.json
的值?

Appsettings.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;     
}
c# json asp.net-core .net-core blazor-server-side
1个回答
0
投票

我认为你想更改 json 文件。您可以尝试使用“JsonObject”来轻松修改json文本。

@using System.Text.Json
@using System.Text.Json.Nodes

        var filePath = "appsettings.json";
        var oldjson = File.ReadAllText(filePath);
        var jsonobject = JsonObject.Parse(oldjson);
        jsonobject["Serilog"]["Properties"]["UserId"] = UserName;
        var newjson = jsonobject.ToString();
        File.WriteAllText(filePath, newjson);

文件更改后,

builder.Configuration
会自动更改。或者您可以确保在文件更改时重新加载配置。

builder.Configuration.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
© www.soinside.com 2019 - 2024. All rights reserved.