随机古诗词-呆憨API

API地址:https://api.daihan.top/api/guwen/index.php

请求方式:AJAX请求返回JSON

请求示例:
fetch
('https://api.daihan.top/api/guwen/index.php', {method: 'GET'})
.then(response => {
return response.text()
}).then(text => {
document.querySelector("#guwen").innerText = text
})