Azure Logic App Get Rows 操作将相同的列 headers 转换为数字,只有方括号的值不同
Azure LogicApp GetRows action converts the same column headers with only difference in values of square bracket into numbers
[更新] Azure 产品团队正在处理此错误,根据产品团队的响应,新的 hot-fix 将在未来几周内发布。
我正在使用 Azure LogicApp Google Sheet 连接器来收集电子表格的行。目标电子表格中有一些列 headers 完全相同,只是方括号中的文本有所不同。
列headers如:
- 您使用最多的社交媒体是什么? [脸书]
- 您使用最多的社交媒体是什么? [Instagram]
在电子表格中一切都很好,但是当我通过 Get rows
操作收集行时,在 JSON 输出中,列 headers 被转换为:
- 您使用最多的社交媒体是什么?
- 您使用最多的社交媒体是什么? (1)
我用圆括号替换了方括号,效果很好,只有在看到方括号时才会出现这个问题!
任何想法都会受到赞赏。
根据一些测试,我们不能直接解决这个问题。如果您仍然希望 header 为:
Which social media you are using the most? [Facebook]
Which social media you are using the most? [Instagram]
它将显示您提到的结果。而在我看来,问题是细胞表达混乱造成的。
作为解决方法,您只需不要在最后留下 [Facebook]/[Instagram]
。你可以把它放在前面:[Facebook]Which social media you are using the most?
或者在它后面添加任何东西:Which social media you are using the most? [Facebook]add anything
。在我的测试中,我在 header:
的末尾添加了一个点
然后结果在逻辑应用程序中显示为:
[更新] Azure 产品团队正在处理此错误,根据产品团队的响应,新的 hot-fix 将在未来几周内发布。
我正在使用 Azure LogicApp Google Sheet 连接器来收集电子表格的行。目标电子表格中有一些列 headers 完全相同,只是方括号中的文本有所不同。
列headers如:
- 您使用最多的社交媒体是什么? [脸书]
- 您使用最多的社交媒体是什么? [Instagram]
在电子表格中一切都很好,但是当我通过 Get rows
操作收集行时,在 JSON 输出中,列 headers 被转换为:
- 您使用最多的社交媒体是什么?
- 您使用最多的社交媒体是什么? (1)
我用圆括号替换了方括号,效果很好,只有在看到方括号时才会出现这个问题!
任何想法都会受到赞赏。
根据一些测试,我们不能直接解决这个问题。如果您仍然希望 header 为:
Which social media you are using the most? [Facebook]
Which social media you are using the most? [Instagram]
它将显示您提到的结果。而在我看来,问题是细胞表达混乱造成的。
作为解决方法,您只需不要在最后留下 [Facebook]/[Instagram]
。你可以把它放在前面:[Facebook]Which social media you are using the most?
或者在它后面添加任何东西:Which social media you are using the most? [Facebook]add anything
。在我的测试中,我在 header:
然后结果在逻辑应用程序中显示为: