我正在尝试制作一个可以根据我输入的数字创建按钮的信使机器人。代码如下所示:
let messageData = {
"attachment": {
"type": "template",
"payload": {
"template_type": "button",
"text": text[1],
"buttons":[]
}
}
}
说“按钮”的部分:[]是我想根据这种格式添加按钮(在[]内)的地方:
{
"type":"postback",
"title":"button" + i //where i is the button number,
"payload":"button" + i
}
我该怎么做呢?