2017-05-25 43 views

回答

3

看看逻辑应用程序定义语言的文档: https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-definition-language

可以使用concat功能来连接字符串,例如

{ 
    "color": "green", 
    "message": "@concat('awesome', actionBody('otherAction').someProperty)", 
    "notify": false, 
    "message_format": "text" 
} 
+0

我意识到,我并不需要“(好的)@ {body('Step_2')?['score']}:@ {triggerBody()?['Text']}”' – lucuma

+0

@lucuma是的,你可以使用字符串插值作为使用concat的替代方法(但它们是有效的一个是一样的)。很高兴听到你能够让你的表达工作。 –

相关问题