删除历史版本, 初始化仓库

This commit is contained in:
MarkusJoe
2022-06-02 18:50:09 +08:00
commit 91c9c2ba7c
37 files changed
+1773

No files matched your search

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

+15
View File
@@ -0,0 +1,15 @@
.intro {
text-align: center;
}
.head {
text-align: center;
}
.example {
text-align: center;
}
a {
color: green;
}
+10
View File
@@ -0,0 +1,10 @@
function request_async(){
// 使用fetch()函数进行异步请求如果服务端响应速度极慢则不会阻塞页面
fetch('/api/v1/test').then(
response => response.text()
).then(
text => {
document.getElementById('fast_test_example_text').innerText = text
}
)
}