<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title ref="title"></title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script type="module">
window.onload = function () {
// 获取链接元素
var link = document.querySelector('link[rel="icon"]');
var title= document.getElementsByTagName("title")
//第一步,创建XMLHttpRequest对象
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("get", `${import.meta.env.VITE_API_URL}/api/user/getSite`, true);
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
// 成功响应,处理数据
var responseData = JSON.parse(xmlHttp.responseText);
let img=responseData.data.siteLogo
link.href = `data:image/jpeg;base64,${img}`; // 将 '/new-icon.svg' 替换为你想要使用的动态图标路径
title[0].innerHTML=responseData.data.siteName
// ... 进一步处理 responseData ...
} else if (xmlHttp.readyState == 4) {
// 请求完成,但状态不是200,处理错误
console.error("Request failed with status:", xmlHttp.status);
}
};
xmlHttp.send("");
};
</script>
</body>
</html>