Google协作平台:插入针对网站内页面发布的日期

时间:2012-12-22 13:29:10

标签: google-apps-script google-sites

我对Google协作平台非常陌生,我想知道如何为网站内的页面插入发布日期和上次更新日期(而不是使用博客模板)。

看起来我可以使用Apps Scripts和

utilities.formatDate(SitesApp.getActivePage().getDatePublished(), "GMT", "d-MMM-yyyy")

ContentService

但我不确定如何实现它。

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码在Google网站上显示上次更新和发布日期。您可以使用此代码创建一个Apps脚本小工具,然后您可以将其嵌入Google网站。

function doGet(e){
  var app= UiApp.createApplication();
  var page = SitesApp.getActivePage();
  app.add(app.createHTML('Last updated: ' + page.getLastUpdated()));
  app.add(app.createHTML('Published: '+page.getDatePublished()));
  return app;
}

您可以看到演示here

有关Google网站中小工具的详细信息,请访问this page