🐛 轻雪天气获取空aqi值的异常错误

This commit is contained in:
snowy 2024-04-29 16:58:52 +08:00
parent c063c69dea
commit 8809459f1b
7 changed files with 26 additions and 15 deletions

1
.gitignore vendored
View File

@ -21,6 +21,7 @@ liteyuki/resources/templates/latest-debug.html
pyproject.toml
test.py
line_count.py
# nuitka
main.build/

View File

@ -52,6 +52,7 @@ def get_local_data(ulang_code: str) -> dict:
"tomorrow" : ulang.get("weather.tomorrow"),
"day" : ulang.get("weather.day"),
"night" : ulang.get("weather.night"),
"no_aqi" : ulang.get("weather.no_aqi"),
}

View File

@ -9,3 +9,4 @@ weather.day=Day
weather.night=Night
weather.today=Today
weather.tomorrow=Tomorrow
weather.no_aqi=No AQI data

View File

@ -9,3 +9,4 @@ weather.day=昼
weather.night=夜
weather.today=今日
weather.tomorrow=明日
weather.no_aqi=空気質データなし

View File

@ -9,3 +9,4 @@ weather.day=白天
weather.night=夜晚
weather.today=今天
weather.tomorrow=明天
weather.no_aqi=暂无AQI数据

View File

@ -28,6 +28,7 @@ let locationData = data["location"]
// 处理aqi
let aqiValue = 0
if ("aqi" in aqi) {
aqi["aqi"].forEach(
(item) => {
if (item["defaultLocalAqi"]) {
@ -37,6 +38,11 @@ aqi["aqi"].forEach(
}
}
)
} else {
document.getElementById("aqi-dot").style.backgroundColor = '#fff'
document.getElementById("aqi-data").innerText = localData['no_aqi']
}
templates = {
"time": weatherNow["now"]["obsTime"],

View File

@ -289,9 +289,9 @@ function main() {
let mottoFrom = `${motto['author']} ${motto['source']}`
document.getElementById('motto-text').innerText = mottoText
document.getElementById('motto-from').innerText = mottoFrom
document.getElementById('author-description').innerText = localData['description'] + ' Powered by Liteyuki'
let text = document.createElement('div')
text.innerText = localData['description'] + ' Powered by Liteyuki'
document.getElementById('author-description').appendChild(text)
}