主要更新: | " + primary_version_name + " |
次要更新: | " + secondary_version_name + " |
版本编号: | " + version_name_short + " |
版本类型: | " + version_type + " |
版本名称: | " + version_name + " |
版本别称: | " + version_nickname + " |
发布编号: | " + update_count + " |
最后提交: | " + commit + " |
";
+
+function getProjectHash() {
+ const xhr = new XMLHttpRequest();
+ xhr.open('GET', '../Verification/project-hash.json', false); // 第三个参数为 false 表示同步请求
+ xhr.send(null);
+
+ if (xhr.status === 200) {
+ const response = JSON.parse(xhr.responseText);
+ return response.projectHash;
+ } else {
+ console.error('获取项目哈希值时出错: ', xhr.status);
+ return null;
+ }
+}
+
+const projectHash = getProjectHash();
+const version_info = "