"now": { "obsTime": "2023-07-21T09:34+08:00", "temp": "30", "feelsLike": "34", "icon": "104", "text": "阴", "wind360": "-1", "windDir": "无持续风向", "windScale": "1", "windSpeed": "3", "humidity": "82", "precip": "0.0", "pressure": "1008", "vis": "22", "cloud": "91", "dew": "27" }
时间: 2023-07-29 17:11:07 浏览: 119
create-react-app-now:您好,create-react-app,现在满足Zeit的要求。sh服务
根据提供的 JSON 数据,如果你只想保留 `temp`(温度)和 `text`(天气描述)字段,你可以使用以下代码:
```javascript
var jsonData = '{"now":{"obsTime":"2023-07-21T09:34+08:00","temp":"30","feelsLike":"34","icon":"104","text":"阴","wind360":"-1","windDir":"无持续风向","windScale":"1","windSpeed":"3","humidity":"82","precip":"0.0","pressure":"1008","vis":"22","cloud":"91","dew":"27"}}';
// 将 JSON 数据解析为 JavaScript 对象
var data = JSON.parse(jsonData);
// 保留需要的数据
var filteredData = {
temp: data.now.temp,
text: data.now.text
};
// 打印筛选后的数据
console.log(filteredData);
```
在上面的代码中,我们首先将 JSON 数据解析为 JavaScript 对象。然后,我们从 `now` 对象中选择需要的字段 `temp` 和 `text` 并将它们存储在 `filteredData` 对象中。最后,我们将筛选后的数据打印出来。
运行代码后,你将看到输出结果只包含所需的 `temp` 和 `text` 字段的值。
阅读全文