LIQUID TEMPLATE LANGUAGE Twilio Studio Variables

萝らか妹 提交于 2019-12-13 04:28:07

问题


Does anyone know how I can assign liquid template language variables to widget variables?

{% assign name='{{widgets.send_and_reply_3.inbound.Body}}'%}

This does not seem to work. I have removed the '' and that does not work either. Thanks in advance!


回答1:


Twilio developer evangelist here.

When using widget variables within other liquid tags you don't need to include the { or } brackets. So this should work for you:

{% assign name = widgets.send_and_reply_3.inbound.Body %}


来源:https://stackoverflow.com/questions/52251467/liquid-template-language-twilio-studio-variables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!