Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Twilio Studio 将参数传递给流中的函数。我可以将参数添加到函数小部件没有问题,但是如何检索函数中的参数?
工作室截图
我试过查看日志,但不知道如何引用该参数。
参数是event对象的属性,您可以使用点符号访问。在你的情况下是这样的:
event
exports.handler = function(context, event, callback) { const test = event.Test; // your function code here... };