天气查询
104字小于1分钟
2025-6-1
每次扣除 10 额度。
const body = {
"api_key": "xxx",
"city": "大连"
};
fetch('https://api.espai.fun/ai_api/weather', {
method: 'POST',
body: JSON.stringify(body),
headers: { 'Content-Type': 'application/json' },
mode:"cors"
})
.then(response => {
const res = response.data;
const { success, data } = res;
// data = {
// "data":{
// "province": "辽宁",
// "adcode": "210200",
// "weather": "阴",
// "temperature": "24",
// "winddirection": "西南",
// "windpower": "≤3",
// "humidity": "42",
// "reporttime": "2025-06-01 13:00:51",
// "temperature_float": "24.0",
// "humidity_float": "42.0"
// },
// "success": true
// }
})
.catch(error => {
console.error('请求出错:', error);
});