首先,我对 node.js 和 Web 服务非常陌生。
我正在做一些事情,这需要我从 openweather.org API 获取温度并在 HTTP 中提供结果。
api是
http://api.openweathermap.org/data/2.1/find/name?q=London
我想以以下格式将城市名称、温度和度数保存在 HTML 中:
<!DOCTYPE html>
<html>
<head>
<title>Something</title>
</head>
<body>
<h1>Current Weather</h1>
<hr/>
<strong id="city">{{city}}</strong>
<span id="temperature">{{temperature}}</span>
<span id="unit">{{unit}}</span>
<hr/>
<small>last update: <span id="lastupdate">{{datetime}}</span></small>
</body>
</html>
我怎样才能做到这一点?任何帮助。