使用Blazor创建SPA。我有一个将位于根目录的文件,那么我如何以一致的方式访问它?
static string JSONPathDev = @"C:Projectspdc-classroom-displayexternalKeys.properties";
static string JSONPathProduction1 = @"C:inetPubPDCDisplayexternalKeys.properties";
我目前只是根据程序运行的位置来更改这个变量。那么,什么是"~/文件.txt";在asp.net中?我需要控制器吗?
Blazor是服务器端,您应该能够使用相对路径
确保注入HttpClient,然后执行:
var data=await_httpClient.GetFromJsonAsync("/externalKeys.properties"(;