从Azure PowerShell函数提供HTML页面

时间:2018-03-15 13:49:56

标签: powershell azure azure-functions serverless faas

我尝试从Azure PowerShell 功能提供HTML页面。我能够返回HTML,但我知道我可以将内容类型设置为text / htm l,以便浏览器解释HTML。

以下是example from Anythony Chu如何在C#中执行此操作:

public static HttpResponseMessage Run(HttpRequestMessage req, TraceWriter log)
{
    var response = new HttpResponseMessage(HttpStatusCode.OK);
    var stream = new FileStream(@"d:\home\site\wwwroot\ShoppingList\index.html", FileMode.Open);
    response.Content = new StreamContent(stream);
    response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");
    return response;
}

但是在PowerShell函数中,我只使用Out-File cmdlet返回文件,并且没有设置内容类型的选项。这是一个问候世界的例子:

# POST method: $req
$requestBody = Get-Content $req -Raw | ConvertFrom-Json
$name = $requestBody.name

# GET method: each querystring parameter is its own variable
if ($req_query_name) 
{
    $name = $req_query_name 
}

$html = @'
<html>
<header><title>This is title</title></header>
<body>
Hello world
</body>
</html>
'@

Out-File -Encoding Ascii -FilePath $res -inputObject $html

以下是浏览器中的响应方式:

enter image description here

知道如何设置内容类型以便浏览器解释 HTML吗?

1 个答案:

答案 0 :(得分:4)

您可以返回包含属性bodyheadersstatusisRaw(可选)的Response对象:

$result = [string]::Format('{{ "status": 200, "body": "{0}", "headers": {{ 
"content-type": "text/html" }} }}', $html)
Out-File -Encoding Ascii $res -inputObject $result;