如何从azure blob触发器获取blob的url

pav*_*rox 6 javascript blob azure nodes azure-storage

我正在使用 azure blob 触发器来识别容器何时更新。触发器工作正常。但它只返回 blob 文件(如 Base 64 字符串)。但我如何在此触发器中获取 blob 文件的 url。

函数.js

{
  "disabled": false,
  "bindings": [
      {
          "name": "readText",
          "type": "blobTrigger",
          "direction": "in",
          "path": "pngs/{name}",
          "connection":"STORAGEConnectionString"
      }
  ]
}
Run Code Online (Sandbox Code Playgroud)

索引.js

context.log('Node.js Blob trigger function processed', context.bindings);
Run Code Online (Sandbox Code Playgroud)