1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

スプレッドシートの表をアプリで表示させる方法

Posted at

スプレッドシートの下記のシートを

2021-01-27_12h39_33.png

Google Apps Scriptのアプリケーションで下記のように表示させるコードです。

2021-01-27_12h39_51.png

code.gs
function doGet() {
  const html = HtmlService.createTemplateFromFile("index");
  return html.evaluate();
}

function getData() {
  const sht = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('シート1');
  return sht.getDataRange().getValues();
}
index.html
<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
    <style>
      
      /* ここら辺は適当に */
      table{
        width: 500px;
        border: solid 1px #000000;
        border-collapse: collapse;
        margin: 20px;
      }
      
      th{
        border: solid 1px #ffffff;
        padding: 8px 12px 8px 12px;
        background-color: #000;
        color: #ffffff;
        }
        
      td{
        border: solid 1px #000000;
        padding: 7px 10px 7px 10px;
        }
      
    </style>
  </head>
  <body>
  
    <table>
      <?
        const data = getData();
        const header = data.shift();

        output._ = '<tr>';
        for(const column of header){
          output._ = '<th>'+ column +'</th>';
        }
        output._ = '</tr>';

        for(const record of data){
          output._ = '<tr>';
          for(const cell of record){
            output._ = '<td>'+ cell +'</td>';
          }
          output._ = '</tr>';
        }
      ?>
    </table>
  </body>
</html>



1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?