如何从Blob解码内容?

时间:2019-10-30 15:45:06

标签: azure-logic-apps

我们如何解码$ content?

我的内容:

enter image description here

当我简单地这样做时:

enter image description here

我明白了:

enter image description here

我也尝试过:

body('Get_blob_content')['$content']

也不起作用:

enter image description here

另一种尝试:

base64ToString(body('Get_blob_content')['$content'])

enter image description here

我们如何解码$ content?

1 个答案:

答案 0 :(得分:0)

我同意George Chen,解决方案是 decodeBase64(body('Get_blob_content')),但是您检查内容是否为String格式的有效json,如果不是,请尝试添加字符串功能: decodeBase64(string(body('Get_blob_content')))。 问候。