5

カードは既に追加されています。

この動作を実現する方法について、Google に関するドキュメントは見当たりませんでした。

誰かが私に適切なドキュメントまたはこれを行う方法を教えてください。

ありがとう

4

1 に答える 1

0

入力フィールドの onchange アクションに既に組み込まれているカードからセクションを追加/削除できます。

function getCard(addSection) {

 // this is your function to build the card. The initial "getCard" function call does not have any parameter passed, so it will be treated as "false". Hence no section will be added 

 addSection = addSection || false;
 
 if(addSection) {
 // add your section here
 }
 .....
 return card;
}

function OnChangeAction() {
  var card = getCard(true);
  return CardService.newActionResponseBuilder().setNavigation(CardService.newNavigation().updateCard(card)).build()
}

これで問題が解決することを願っています。

于 2018-02-27T13:55:32.923 に答える