0

入力した数字に基づいてボタンを作成できるメッセンジャーボットを作成しようとしています。コードは次のようになります。

let messageData = {
    "attachment": {
        "type": "template",
        "payload": {
            "template_type": "button",
            "text": text[1],
            "buttons":[]
        }
    }
}

"buttons":[] と書かれている部分は、次の形式に従って ([] 内に) ボタンを追加する場所です。

{
   "type":"postback",
   "title":"button" + i //where i is the button number,
   "payload":"button" + i
}

どうすればこれを行うことができますか?

4

1 に答える 1