You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
410 B

// 发送请求到后端获取平均情感得分
fetch('/average_sentiment')
.then(response => response.json())
.then(data => {
// 获取平均情感得分并更新到前端
document.querySelector('#average_sentiment h1').textContent = data.average_sentiment.toFixed(2);
})
.catch(error => console.error('Error:', error));