如何将 For-Each 当前项目传递到 Azure Spark Notebook
花了几个小时尝试将 @item() 从 for-each 活动作为字符串传递到 Azure Spark 笔记本中。为了让其他人不必为此苦苦挣扎,我将提供答案。
Spent a few hours attempting to pass the @item() from a for-each activity into an Azure Spark notebook as a string. So that others do not have to struggle with this I will provide the answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用动态内容 @concat(item()) 作为参数的值。
这会将对象转换为 JSON 字符串,然后您可以在笔记本中解析该字符串。我想我只是厌倦了与这个问题作斗争,看不到这个简单的解决方案。
use dynamic content @concat(item()) as the value of your parameter.
This converts the object into a JSON string which you can then parse in your notebook. I think I was just tired of fighting the problem and could not see this simple solution.