我目前正在建立一个管道,需要从JSON响应(Web活动输出(中提取一个值。此输出的字段名称中有一个句点。如何使用此值?
简化后的输出如下:
{
"aud": "https://login.----.com/auth/authentication/resources",
"abc.organisationUserCode": "----",
"abc.clusterUrl": "https://url-to-use.com",
}
如果我使用@activity('GetclusterUrl').output.abc.clusterUrl
,我会得到以下错误:
The expression 'activity('GetclusterUrl').output.abc.clusterUrl' cannot be evaluated because property 'abc' doesn't exist
例如,有没有一种方法可以使用转义符来进一步使用该值?
请尝试以下表达式:
@activity('GetclusterUrl').output['abc.organisationUserCode']