我正在Github页面上测试API。我能够使用Openweather.org应用程序接口。在浏览器中可以查看完整的JSON数据,但是只有一个键/值对"description“会显示在我的页面上。我尝试向HTML添加三个div标记,在天气和我想要呈现的键之间使用冒号,并且我尝试只使用一个点。我已经用谷歌搜索了这个问题,但没有找到任何与我的项目相关的东西。
另外,请注意,我注释掉了两个变量const t和const m,因为它们会使程序失败。我试图复制const p的格式。任何指导都将不胜感激!
这里是JSON的天气数据:
{
coord: {
lon: -0.13,
lat: 51.51
},
weather: [
{
id: 701,
main: "Mist",
description: "mist",
icon: "50n"
}
],
base: "stations",
main: {
temp: 278.61,
pressure: 1024,
humidity: 81,
temp_min: 276.15,
temp_max: 280.15
},
visibility: 10000,
wind: {
speed: 3.1,
deg: 100
},
clouds: {
all: 20
},
dt: 1544552400,
sys: {
type: 1,
id: 1414,
message: 0.0033,
country: "GB",
sunrise: 1544515001,
sunset: 1544543482
},
id: 2643743,
name: "London",
cod: 200
}
这里的是我的JavaScript:
//added strict mode to address following error message, "Uncaught SyntaxError: Unexpected token u in JSON at position 0." 'use strict';
const app = document.getElementById("root");
//add API related image
const weather = document.createElement("img");
weather.src = "weather.jpg";
const container = document.createElement("div");
container.setAttribute("class", "container");
//method to append the logo image and container div to the app root.
app.appendChild(weather);
app.appendChild(container);
// Create a request variable and assign a new XMLHttpRequest object to it.
var request = new XMLHttpRequest();
// Open a new connection, using the GET request on the URL endpoint
request.open("GET", "https://api.openweathermap.org/data/2.5/weather?q=London&APPID=14d276f4fe655e659ec92149c7cebbec", true);
request.onload = function () {
// Begin accessing JSON data here
var data = JSON.parse(this.response);
if (request.status >= 200 && request.status < 400) {
data.weather.forEach(weather => {
const card = document.createElement("div");
card.setAttribute("class", "card");
const h1 = document.createElement("h1");
h1.textContent = weather.title;
const p = document.createElement("p");
weather.description = weather.description.substring(0, 300);
p.textContent = `${weather.description}...`;
/*const m = document.createElement("p");
weather.main = weather.main.substring(0, 300);
m.textContent = `${weather.main}...`;
const t = document.createElement("p");
weather.main.temp = weather.main.temp;
t.textContent = `${weather.main.temp}...`; */
// Append the cards to the container element
container.appendChild(card);
// Each card will contain an h1 and a p
card.appendChild(h1);
card.appendChild(p);
});
} else {
const errorMessage = document.createElement("marquee");
errorMessage.textContent = `Hug it, it's not working!`;
app.appendChild(errorMessage);
}
}
// send request
request.send();
这里是
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Testing</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,700"
rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script src="scripts.js"></script>
</body>
</html>
这里的是CSS:
* {
box-sizing: border-box
}
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Dosis', sans-serif;
line-height: 1.6;
color: #666;
background: #F6F6F6;
}
#root {
max-width: 1200px;
margin: 0 auto;
}
h1 {
text-align: center;
padding: 1.5rem 2.5rem;
background-image: linear-gradient(120deg, #fbc2eb 0%, #a6c1ee 100%);
margin: 0 0 2rem 0;
font-size: 1.5rem;
color: white;
}
p,t {
padding: 0 2.5rem 2.5rem;
margin: 0;
}
.container {
display: flex;
flex-wrap: wrap;
}
.card {
margin: 1rem;
background: white;
box-shadow: 2px 4px 25px rgba(0, 0, 0, .1);
border-radius: 12px;
overflow: hidden;
transition: all .2s linear;
}
.card:hover {
box-shadow: 2px 8px 45px rgba(0, 0, 0, .15);
transform: translate3D(0, -2px, 0);
}
@media screen and (min-width: 600px) {
.card {
flex: 1 1 calc(50% - 2rem);
}
}
@media screen and (min-width: 900px) {
.card {
flex: 1 1 calc(33% - 2rem);
}
}
.card:nth-child(2n) h1 {
background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}
.card:nth-child(4n) h1 {
background-image: linear-gradient(120deg, #ff9a9e 0%, #fecfef 100%);
}
.card:nth-child(5n) h1 {
background-image: linear-gradient(120deg, #ffc3a0 0%, #ffafbd 100%);
}
https://stackoverflow.com/questions/53730925
复制相似问题