在两张卡片之间导航

Navigating between two cards

我正在制作一个 gmail 插件,我试图使用 google App 脚本在 gmail 广告中的两张卡片之间导航。但是我收到一个错误。

Error with the add-on. Run time error. Object does not have property - /​Card/​header. [line: 42, function: notifyUser, file: Code]

这是我的清单代码

{
  "oauthScopes": [
    "https://www.googleapis.com/auth/gmail.addons.execute",
    "https://www.googleapis.com/auth/gmail.readonly",
    "https://www.googleapis.com/auth/script.storage",
    "https://www.googleapis.com/auth/script.external_request",
    "https://www.googleapis.com/auth/spreadsheets"    
  ],
   "urlFetchWhitelist": [
      "https://mail.google.com/",
      "https://sites.google.com/fcpl.biz/fthub/ft-hub/"
    ],
  "gmail": {
    "name": "Finetech",
    "logoUrl": "https://sites.google.com/a/oursrilanka.com/testing-url/gmail-addons/sound.png",
    "contextualTriggers": [{
      "unconditional": {},
      "onTriggerFunction": "buildCard"

    }],
    "openLinkUrlPrefixes": [
      "https://mail.google.com/",
      "https://sites.google.com/fcpl.biz/fthub/ft-hub/"
    ],
    "primaryColor": "#4285F4",
    "secondaryColor": "#4285F4",
    "version": "TRUSTED_TESTER_V2"
  }
}

这是我的 code.gs 文件

    //Spread Sheet ID
var SS_ID = "181tnith14lu8ttAvtqsU3gHi32-UjcrPqH5Pjuenk5A";

function buildCard(){
    var list=getPost();
    Logger.log(list);
    var card = CardService.newCardBuilder();
    card.setHeader(CardService.newCardHeader().setTitle("<font color=\"#0117a1\"><b>FT News Feed</b></font>"));
    var section = CardService.newCardSection().setHeader("<font color=\"#1257e0\">Announcements</font>");
    for(var i=0; i<list.length ;i++){
      section.addWidget(CardService.newTextParagraph().setText(list[i].para.slice(0,85)+"..."+"<font color=\"#FF0000\">view</font>")); 
    }

    var button = CardService.newTextButton().setText('More Detail').setOpenLink(CardService.newOpenLink().setUrl("https://sites.google.com/fcpl.biz/fthub/ft-hub"));
    section.addWidget(CardService.newButtonSet().addButton(button));
    card.addSection(section);

   var section2 = CardService.newCardSection().setHeader("<font color=\"#1257e0\">OverC </font>");
   section2.addWidget(CardService.newTextParagraph().setText(''));
   card.addSection(section2);

   var section3 = CardService.newCardSection().setHeader("<font color=\"#1257e0\">Finetech Apps</font>");
   section3.addWidget(CardService.newTextParagraph().setText(' '));
      var buttonAction = CardService.newAction()
        .setFunctionName('notifyUser');
  section3.addWidget(CardService.newTextButton()
        .setText('Notify')
        .setOnClickAction(buttonAction));
  card.addSection(section3);

  return card.build();
 }

  function notifyUser() {
   var card = CardService.newCardBuilder();
   var section2 = CardService.newCardSection().setHeader("<font color=\"#1257e0\">OverC </font>");
   section2.addWidget(CardService.newTextParagraph().setText(''));
   card.addSection(section2);

    return card.build();
  }

///////////////////////////////////////////////////////////////////////////////

var ss = SpreadsheetApp.openById(SS_ID);
var sheet = ss.getSheets()[0];

function getPost(){

    var todayDate = Utilities.formatDate(new Date(), "GMT", "MM/dd/yyyy");
    var lastRaw = sheet.getLastRow();
    var list = [];

    //get data from sheet
    for(var i=lastRaw; i > 1; i--){ 
        if(getClosingDate(i) > todayDate){
              var obj = {
                "para": getPara(i),
                "time":getTime(i),
              };
          list.push(obj);
          }          
    }

    return list;
}

function getPara(raw){
  var para = sheet.getRange(raw,3.0).getValue();  
  return para;    
}

function getClosingDate(raw){
     var dueDate = new Date(sheet.getRange(raw,5.0).getValue());
     //Logger.log("Due: "+dueDate);
     //var nRow = row+1;
     dueDate.setDate(dueDate.getDate()+1);
     var closingDate=Utilities.formatDate(dueDate, "GMT", "MM/dd/yyyy");
     return closingDate;   
}

function getTime(raw){
     var time = sheet.getRange(raw, 1.0).getValue().toString();
     var editTime=time.slice(0,24);  
     return editTime;
}

您需要将 CardHeader 添加到在 notifyUser 方法中创建的 Card。

  function notifyUser() {
    var card = CardService.newCardBuilder();
    card.setHeader(CardService.newCardHeader().setTitle("Notify User"));
    var section2 = CardService.newCardSection().setHeader("<font color=\"#1257e0\">OverC </font>");
    section2.addWidget(CardService.newTextParagraph().setText(''));
    card.addSection(section2);
    return card.build();
  }