yunzi7's picture
add quiz
53ce00a
raw
history blame
609 Bytes
{% extends 'base.html' %}
{% block content %}
<h1 id="topic">์ฃผ์ œ๊ฐ€ ์—ฌ๊ธฐ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค</h1>
<script>
// ์ฃผ์ œ ์—…๋ฐ์ดํŠธ ํ•จ์ˆ˜
function updateTopic() {
fetch('/get_topic')
.then(response => response.json())
.then(data => {
document.getElementById('topic').textContent = data.topic;
})
.catch(error => console.error('Error fetching topic:', error));
}
// ํŽ˜์ด์ง€๊ฐ€ ๋กœ๋“œ๋  ๋•Œ ์ฃผ์ œ ์—…๋ฐ์ดํŠธ
updateTopic();
// 20์ดˆ๋งˆ๋‹ค ์ฃผ์ œ ์—…๋ฐ์ดํŠธ
setInterval(updateTopic, 20000);
</script>
{% endblock %}