2017-09-07 43 views
2

我試圖找出如何使用Powershell獲取Azure函數路由參數(段)。使用Powershell獲取Azure函數路由參數(段)

我想以某種方式在我function.json文件得到定義的方法:如果使用POST

$ req_query_ * =給我查詢參數而不是

{ 
    "bindings": [ 
    { 
     "name": "req", 
     "type": "httpTrigger", 
     "direction": "in", 
     "authLevel": "function", 
     "route": "api/{method}" 
    }, 
    ... 
    ] 
} 

$ REQ =給我的身體在路線中定義的細分。

在此先感謝

回答

0

有可能是一個更好的辦法,但一個選擇是僅直接讀取function.json文件,如下所示:

$Config = Get-Content D:\home\site\wwwroot\<function_name>\function.json -Raw | ConvertFrom-JSON 

哪裏<function_name>是你的函數的名稱。