0
我正在試圖製作一個messenger機器人,它可以基於我輸入的數字創建按鈕。代碼如下所示:JavaScript - 如何動態添加到嵌套對象數組
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
}
將如何我去做這個?
messageData.attachment.payload.buttons.push(obj)其中obj是JSON。 –
對不起,如果這個聲音「不好」,但我將如何創建JSON? –
Nvm,我明白了。你的解決方案奏效,非常感謝你! –