gpt4 book ai didi

azure - 解析 Azure 逻辑应用中的文本

转载 作者:行者123 更新时间:2023-12-04 21:06:10 25 4
gpt4 key购买 nike

我想创建Azure Logic App它会不断地请求互联网上的特定网站并解析收到的 HTML。

我已创建逻辑应用并设置间隔和 HTTP 请求操作。

我应该选择哪个操作作为 HTML 代码上的简单正则表达式操作的下一步?

我想到的是创建Azure Function这可以完成这项工作,但我想知道是否还有其他解决方案更适合此类任务。

我希望它尽可能简单。

<小时/>

编辑:

刚刚发现了一些很酷的功能。逻辑应用包含一些基本类型的基本表达式。

不幸的是,它缺少任何regexstring.contains

现在,我将尝试使用 Azure Functions。

最佳答案

我已经成功使用 Workflow Definition Language 解决了我的问题以及 Azure 提供的构建 block 。

Azure Function 的想法并没有那么糟糕,并且非常适合任何更复杂的情况,但正如我提到的,我希望它尽可能简单,所以就在这里。

这就是我的流程现在的样子。

为了完整起见,以下是 JSON 格式的流程

{
"$connections": {
"value": {
"wunderlist": {
"connectionId": "/subscriptions/.../providers/Microsoft.Web/connections/wunderlist",
"connectionName": "wunderlist",
"id": "/subscriptions/.../providers/Microsoft.Web/locations/northeurope/managedApis/wunderlist"
}
}
},
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Condition": {
"actions": {
"Create_a_task": {
"inputs": {
"body": {
"completed": false,
"list_id": 000000000,
"starred": true,
"title": "@{variables('today date')}"
},
"host": {
"connection": {
"name": "@parameters('$connections')['wunderlist']['connectionId']"
}
},
"method": "post",
"path": "/tasks",
"retryPolicy": {
"type": "none"
}
},
"limit": {
"timeout": "PT20S"
},
"runAfter": {},
"type": "ApiConnection"
},
"Set_a_reminder": {
"inputs": {
"body": {
"date": "@{addHours(utcNow(), 3)}",
"list_id": 000000,
"task_id": "@body('Create_a_task')?.id"
},
"host": {
"connection": {
"name": "@parameters('$connections')['wunderlist']['connectionId']"
}
},
"method": "post",
"path": "/reminders",
"retryPolicy": {
"type": "none"
}
},
"limit": {
"timeout": "PT20S"
},
"runAfter": {
"Create_a_task": [
"Succeeded"
]
},
"type": "ApiConnection"
}
},
"expression": "@contains(body('HTTP'), variables('today date'))",
"runAfter": {
"Initialize_variable": [
"Succeeded"
]
},
"type": "If"
},
"HTTP": {
"inputs": {
"method": "GET",
"uri": "..."
},
"runAfter": {},
"type": "Http"
},
"Initialize_variable": {
"inputs": {
"variables": [
{
"name": "today date",
"type": "String",
"value": "@{utcNow('yyyy/MM/dd')}"
}
]
},
"runAfter": {
"HTTP": [
"Succeeded"
]
},
"type": "InitializeVariable"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"parameters": {
"$connections": {
"defaultValue": {},
"type": "Object"
}
},
"triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Day",
"interval": 1,
"startTime": "2017-08-01T23:55:00Z",
"timeZone": "UTC"
},
"type": "Recurrence"
}
}
}
}

关于azure - 解析 Azure 逻辑应用中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45456381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com