수면·이유식·건강·발달·지원금까지
실전 육아에서 바로 써먹는 꿀팁
아래 단계를 따라 구글 시트와 연결하면
꿀팁 콘텐츠가 자동으로 표시돼요.
id category emoji title summary content tags datefunction doGet(e) {
const sheet = SpreadsheetApp
.getActiveSpreadsheet()
.getActiveSheet();
const rows = sheet.getDataRange().getValues();
const headers = rows[0];
const tips = rows.slice(1)
.filter(r => r[0]) // id 없는 행 제외
.map(r => {
const obj = {};
headers.forEach((h, i) => obj[h] = r[i]);
return obj;
});
return ContentService
.createTextOutput(JSON.stringify({ tips }))
.setMimeType(ContentService.MimeType.JSON);
}
tips.html 파일에서 아래 줄을 찾아 URL을 붙여넣으세요.const SHEET_JSON_URL = (typeof CONFIG !== 'undefined') ? CONFIG.SHEET_JSON_URL : '';index.html 파일의 같은 줄도 동일하게 변경하세요.