Logic Apps-以纯文本格式转换HTML符号

时间:2019-06-19 08:30:23

标签: azure azure-logic-apps

是Logic Apps的新手,并不熟悉所有功能。

我创建了一个简单的逻辑应用程序,该应用程序会经常检查RSS提要,循环查找所找到的每个项目,仅获取某些数据(标题,摘要和URL链接),并将其粘贴到HTML表格中,然后通过结果。听起来很简单,对吧?

我面临的问题是RSS提要包含某些HTML字符,例如&',这些字符随后将出现在我收到的电子邮件中。可以在Logic Apps中进行转换吗?

此外,我还注意到某些HTML字符是“双重编码的?” 基本上,如果我们必须立即查看<description>&amp;quot;Quando Romelu si mette in testa una cosa, di solito la ottiene. Ora, si sarebbe messo in testa l&amp;rsquo;Inter.</description>,您将意识到紧随其后的&amp;的第一个quot;在那里。因此,我希望首先将&amp;转换为实际的&,然后再将&quot;转换为“”(如果我要说的是合理的话)。我不拥有供稿或以任何方式对其进行控制。想要熟悉Logic Apps,所以我认为我将从足球新闻处理入手。

以下是RSS Feed中一项(共20种)的示例

<item>
  <guid>https://www.fcinternews.it/?action=read&amp;idnotizia=310797</guid>
  <pubDate>Wed, 19 Jun 2019 09:51:40 +0200</pubDate>
  <title>CdS - Il BVB vuole Pinamonti: valutazione schizzata oltre i 20 milioni </title>
  <link>https://www.fcinternews.it/rassegna/cds-il-bvb-vuole-pinamonti-valutazione-schizzata-oltre-i-20-milioni-310797</link>
  <description>Anche il Corriere dello Sport sottolinea la grande fila che si &amp;egrave; messa in attesa di buone nuove dall&amp;#39;Inter per Andrea Pinamonti, protogonista del Mondiale U-20.</description>
  <category>Rassegna</category>
  <enclosure url="https://net-storage.tccstatic.com/storage/fcinternews.it/img_notizie/thumb1/ec/ec620af4eeb01ebebbb662d7947a6700-85495-21a8fcf5fc9c392cfa4303d2753d5db6.jpeg" type="image/jpeg" length="9983"/>
</item>

2 个答案:

答案 0 :(得分:2)

有一种使用Azure函数清理它的解决方案link

但是,当您正在执行这样的操作时,我想您可以执行替换操作,哦,单引号转义很烂。使用变量作弊。

replace(replace(replace(replace(item()['summary'],'&nbsp;',' '),'&amp;','& '),'&quot;','"'),'&#39;','')

replace(replace(replace(replace(item()['title'],'&nbsp;',' '),'&amp;','& '),'&quot;','"'),'&#39;',variables('EscapeSingleQuotation'))

Flow

结果

html table

这是您要寻找的吗?

答案 1 :(得分:1)

Microsoft已包含名为- Content Conversion 的新连接器。
这样会将HTML内容转换为纯字符串。

这在Logic Apps,Power Automate,Power Apps中可用。但仍处于预览阶段。

enter image description here