Azure 门户中的 Azure Function Environment.GetEnvironmentVariable 对象引用错误

Azure Function Environment.GetEnvironmentVariable object reference error in Azure portal

我已使用 visual studio 2017 将我的应用程序发布到 Azure Function。由于环境变量中的连接字符串始终为空,我在日志中收到对象引用错误,但是,该应用程序运行正常在当地。下面是我获取连接字符串并记录它的代码。

var helper = new Helper();

log.LogInformation($ "The connection string is {helper.GetConnectionString()}");

if (string.IsNullOrWhiteSpace(helper.GetConnectionString())) return req.CreateErrorResponse(HttpStatusCode.BadRequest, "Connection is null");

var signalRService = new SignalRService(helper.GetConnectionString(), helper.GetIotHubName(), log);
log.LogInformation("SignalRService has been initialized");

await signalRService.SendRequest(helper.GetIotHubName(), data?.ToString());
log.LogInformation("SignalRService has been invoked successfully");

return req.CreateResponse(HttpStatusCode.OK, "Success");

下面是我的帮手class

public class Helper {
    private static readonly string connectionStringName = "AzureSignalRConnectionString";
    private static readonly string iotHubName = "iotHubName";

    public string GetConnectionString() {
        return Environment.GetEnvironmentVariable(connectionStringName, EnvironmentVariableTarget.Process);
    }
    public string GetIotHubName() {
        return Environment.GetEnvironmentVariable(iotHubName, EnvironmentVariableTarget.Process);
    }
}

当我在门户中监视我的函数时,我可以清楚地看到连接字符串为空。我已经在 local.settings.json 中给出了连接字符串。

{
  "IsEncrypted": false,
  "Values": {
    "AzureWebJobsStorage": "UseDevelopmentStorage=true",
    "FUNCTIONS_WORKER_RUNTIME": "dotnet",
    "iotHubName": "iot-hub",
    "AzureSignalRConnectionString": "connection string value",
    "MSDEPLOY_RENAME_LOCKED_FILES": 1
  },
  "Host": {
    "LocalHttpPort": 5181,
    "CORS": "*"
  }
}

我不确定我在这里遗漏了什么。非常感谢任何帮助。

我想出了我在这里缺少的东西。当涉及到环境变量时,单独将它们添加到 local.settings.json 将无济于事。当我登录到我的 Azure 函数并检查应用程序设置时,我无法找到我在 local.settings.json 中提供的设置。我做了以下步骤。

  1. 在 Visual Studio
  2. 中打开了发布设置
  3. 单击“管理应用程序设置”后,我缺少两个环境变量的远程字段中的值。
  4. 在远程字段中添加值。
  5. 重建并发布功能应用程序
  6. 登录到 Azure 门户并确保值在应用程序设置下。