原神角色和武器抽取记录 - UID 214634447
以下是原神玩家 UID 214634447 的角色和武器抽取记录:
- 铁影阔剑 - 武器 (2022-06-06 13:24:46)
- 托马 - 角色 (2022-06-05 10:58:15)
- 弹弓 - 武器 (2022-06-04 16:56:41)
- 雨裁 - 武器 (2022-06-04 15:43:53)
您可以使用以下代码将该 JSON 数据通过 Ajax 导入到网页中:
const xhr = new XMLHttpRequest();
xhr.open('GET', 'your-json-url', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
const json = JSON.parse(xhr.responseText);
// 处理json数据
json.info.forEach(item => {
const li = document.createElement('li');
li.textContent = `${item.name} - ${item.item_type}`;
jsonList.appendChild(li);
});
}
};
xhr.send();
请将 'your-json-url' 替换为您实际的 JSON 数据 URL。这段代码将发送一个 GET 请求,并在收到响应后将 JSON 数据解析为对象,然后根据需要处理数据。
原文地址: https://www.cveoy.top/t/topic/qnNq 著作权归作者所有。请勿转载和采集!