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
382 B
8 lines
382 B
2 months ago
|
// 发送请求到后端获取关键字数量
|
||
|
fetch('/count_keywords')
|
||
|
.then(response => response.json())
|
||
|
.then(data => {
|
||
|
// 获取关键字数量并更新到前端
|
||
|
document.querySelector('#keyword_count h1').textContent = data.keyword_count;
|
||
|
})
|
||
|
.catch(error => console.error('Error:', error));
|