Spaces:
Running
Running
File size: 1,051 Bytes
1a34be3 dd60d3f 1a34be3 917a40d dd60d3f 1a34be3 dd60d3f 1a34be3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
async function displayTranscription() {
const transcriptionElement = document.getElementById("transcription");
const loader = document.getElementById("loader");
loader.style.display = "block";
try {
const response = await fetch("/transcription");
if (!response.ok) throw new Error("データ取得に失敗しました。");
const data = await response.json();
const conversations = data.transcription;
if (!data || !data.transcription) {
throw new Error("会話データが見つかりませんでした。");
}
transcriptionElement.innerHTML = conversations;
loader.style.display = "none";
console.log(conversations);
} catch (error) {
loader.style.display = "none";
transcriptionElement.textContent = `エラー: ${error.message}`;
console.error("データ取得エラー:", error);
}
}
displayTranscription();
function showRecorder() {
window.location.href = "/index";
}
function showFeedback() {
window.location.href = "/feedback";
}
|