0
  1. 我有 Office 365 触发器“新电子邮件到达时?”
  2. 我用值 Max Sample 初始化变量用户名
  3. 然后调用天蓝色函数 FxNet21HttpTrigger1,如果确定有逻辑应用程序的用户名,是否可以将其更改为返回另一个变量
  4. 检查用户名,如果是“唐老鸭”则做一件事,否则做另一件事

我正在寻找一种在 azure 函数中设置值并对逻辑应用程序中的值做出反应的最小方法。

逻辑应用设计器屏幕截图

4

1 回答 1

0

这是使用版本 1 Azure 功能(版本 2 和 3 类似):

using System.Net;
using System.Net.Http;

....

[FunctionName("MyFunction")]    
public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)]HttpRequestMessage req, TraceWriter log)
{    
    return new GetHtmlResponseContent("<html><body>Hello <b>world</b></body></html>"};
}

private static HttpResponseMessage GetHtmlResponseContent(string msg, HttpStatusCode httpStatusCode)
{
    var response = new HttpResponseMessage(httpStatusCode);
    response.Content = new StringContent(msg));
    response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");

    return response;
}  

您可能希望返回包含您的返回值的 JSON 有效负载。

如何从 Azure 函数返回 JSON

于 2020-12-12T23:27:36.130 回答