Azure函数JavaScript本地开发环境变量

时间:2017-08-25 17:02:58

标签: node.js azure azure-functions

在JavaScript locally中开发Azure功能时,如何使用azure-functions-core-tools func host start --debug在本地运行函数时获取/设置Node环境变量?

JavaScript中的Azure功能的

Documentation演示了通过process.env[settingName]定位功能应用程序设置。当发布/部署从azure功能应用程序的应用程序设置中提取值时,这似乎很有效。

尝试在命令提示符下使用$env:FOO="bar"(powershell)或set FOO=bar设置的函数中记录本地节点环境变量(Windows)时,它会记录未定义。尝试使用命令context.log(process.env['FOO'])记录这些值。

index.js

const foo = process.env["FOO"];

module.exports = function (context, req) {
    context.log('bar') // successfully logs 'bar' in the azure function log
    context.log(foo); // logs undefined

    if (req.query.name || (req.body && req.body.name)) {
        context.res = {
            // status: 200, /* Defaults to 200 */
            body: "Hello " + (req.query.name || req.body.name)
        };
    } else {
        context.res = {
            status: 400,
            body: "Please pass a name on the query string or in the request body"
        };
    }
    context.done();
};

感谢您提供任何帮助!

1 个答案:

答案 0 :(得分:5)

您是否在功能应用的根目录中使用了local.settings.json文件?

{
  "IsEncrypted": false,
  "Values": {
    "FOO": "-- Your Value --",
  }
}