Samouczek wideo - Jak używać powiadomień e-mail z Google Forms

Ten samouczek wideo opisuje, jak korzystać z dodatku Powiadomienia e-mail, aby otrzymywać odpowiedzi z Google Forms w wiadomości e-mail. Interfejs formularza mógł się nieznacznie zmienić po utworzeniu tego filmu.

// 实时搜索预览功能 if (searchInput.value.length >= 2) { fetch('/api/search?q=' + encodeURIComponent(searchInput.value)) .then(response => response.json()) .then(data => { if (data.results && data.results.length > 0) { displayResults(data.results, searchInput.value); } else { searchMessage.textContent = "Enter your search terms and click the search button to see full results"; searchMessage.style.display = 'block'; } }) .catch(() => { searchMessage.textContent = "Enter your search terms and click the search button to see full results"; searchMessage.style.display = 'block'; }); } } }); });