一款查询天气的WebApp

一、WebApp介绍

1.初始界面

2.搜索结果页面

二、项目代码

1.项目目录

--------app

----------app.component.ts

----------app.component.css

----------app.component.html

----------app.module.ts

2.app.component.html

 1 <div class="content">
 2     <div>
 3         <img width="300" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg==">
 4     </div>
 5     <h2>{{title}}</h2>
 6     <div>
 7         <form class="form-inline">
 8           <div class="form-group">
 9             <label for="exampleInput">Address</label>
10             <input type="text" class="form-control" id="exampleInput" placeholder="Please input the address" name="searchAddress">
11           </div>
12           <button type="button" class="btn btn-default" (click)="start()">Search</button>
13         </form>
14     </div>
15 </div>
16 <div class="data" *ngIf="begin">
17     <table class="table table-striped">
18         <thead>
19             <tr>
20                 <th>日期</th>
21                 <th>天气</th>
22                 <th>日间温度</th>
23                 <th>夜间温度</th>
24                 <th>气压值</th>
25                 <th>湿度</th>
26                 <th>天气情况</th>
27             </tr>
28         </thead>
29         <tbody>
30             <tr *ngFor="let DL of DataList;let i=index;">
31                 <td>{{dateString[i]}}</td>
32                 <td>{{DL.weather[0].main}}</td>
33                 <td>{{DL.temp.day}}</td>
34                 <td>{{DL.temp.night}}</td>
35                 <td>{{DL.pressure}}</td>
36                 <td>{{DL.humidity}}</td>
37                 <td><img src="http://openweathermap.org/img/w/{{DL.weather[0].icon}}.png"/></td>
38             </tr>
39         </tbody>
40     </table>
41 </div>

3.app.component.ts

 1 import { Component, OnInit } from ‘@angular/core‘;
 2 import {HttpClient} from ‘@angular/common/http‘;
 3 import ‘rxjs/add/operator/toPromise‘;
 4
 5 @Component({
 6     selector: ‘app-root‘,
 7     templateUrl: ‘./app.component.html‘,
 8     styleUrls: [‘./app.component.css‘]
 9 })
10 export class AppComponent{
11     title = ‘A weather search App!‘;
12     public http;
13     Data:any;
14     begin=false;//控制天气结果列表是否出现
15     searchAddress:string;//查询框文本的变量声明
16     dateString:string[];//天气结果列表的七个日期数组声明
17     DataList:any;//获取到的数据列表变量声明
18     constructor(private Http:HttpClient) {
19         this.http = Http;
20     }
21     now=new Date()//获取当前时间
22     GetDateStr(AddDayCount :number) {
23         this.now.setDate(this.now.getDate()+AddDayCount);//获取AddDayCount天后的日期
24         let y = this.now.getFullYear();
25         let m = this.now.getMonth()+1;//获取当前月份的日期
26         let d = this.now.getDate();
27         return y+"年"+m+"月"+d+"日";
28     }
29     ngOnInit() {//在组件加载进来的时候就执行
30         this.dateString=[this.GetDateStr(0),this.GetDateStr(1),this.GetDateStr(2),this.GetDateStr(3),this.GetDateStr(4),this.GetDateStr(5),this.GetDateStr(6)]
31     }
32     start(){//点击查询之后执行的函数
33         this.searchAddress = (document.getElementsByName(‘searchAddress‘)[0] as HTMLInputElement).value;//获取搜索框里面的文本
34         if(this.searchAddress.length!=0){//如果搜索框里面的文本不为空,那么结果列表出现,并且发送请求
35             this.begin=true;
36             this.http.get("http://api.openweathermap.org/data/2.5/forecast/daily?q="+this.searchAddress+"&mode=json&units=metric&cnt=7&appid=f12159c1f548ea9ab7b5ff1907b1df50")
37                 .subscribe((data) => {
38                     this.Data=data;
39                     this.DataList=this.Data.list;
40                 },
41                 err => { });
42         }else{//如果搜索框里面的文本为空,那么结果列表不出现,并且不发送请求
43             alert("请输入地址");
44         }
45     }
46 }

4.app.component.css

1 .content{
2     width: 340px;
3     margin: 0 auto;
4 }
5 .data{
6     width: 800px;
7     margin: 0 auto;
8     margin-top: 10px;
9 }

ps:项目中的数据接口亲测可用,大家可以玩玩

项目代码地址https://github.com/Nangxif/WeatherWebApp

时间: 2024-10-31 14:10:20

一款查询天气的WebApp的相关文章

通过中国天气网的通用接口查询天气

通过中国天气网的通用接口查询天气. #coding:utf-8 import urllib2, json from city import city yourcity = raw_input("你想查那个城市的天气?") #yourcity = '杭州' url = "http://www.weather.com.cn/data/cityinfo/" + city[yourcity] + ".html" response = urllib2.ur

使用API查询天气

服务端代码 [HttpPost] public ActionResult GetWeather() { HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://api.map.baidu.com/telematics/v3/weather?location=厦门&output=json&ak=5slgyqGDENN7Sy7pw29IUvrZ"); HttpWebResponse res

【Python3爬虫】自动查询天气并实现语音播报

一.写在前面 之前写过一篇用Python发送天气预报邮件的博客,但是因为要手动输入城市名称,还要打开邮箱才能知道天气情况,这也太麻烦了.于是乎,有了这一篇博客,这次我要做的就是用Python获取本机IP地址,并根据这个IP地址获取物理位置也就是我所在的城市名称,然后用之前的办法实现查询天气,再利用百度语音得到天气预报的MP3文件,最后播放,这样是不是就很方(tou)便(lan)了呢? 二.具体步骤 这次有四个py文件:get_ip.py,get_wather.py,get_mp3.py和main

python 基础例子 双色球 查询天气 查询电话

# 随机生成双色球import random# 随机数 1-16之间# r = random.randint(1,16)# print(r)phone_numbers_str = "匪警[110],火警[119],急救中心[120],道路交通事故报警[122],水上求救专用电话[12395],天气预报[12121],报时服务[12117],森林火警[12119],电力服务[95598],红十字会急救台[999],公安短信报警[12110],通用紧急求救[112],信产部IP/网站备案[010-6

(转)3款优秀的移动webAPP网站在线测试工具

原文:原文地址(本博主一向尊重原作) 目前适配各个终端的需求越来越强烈呢?比如我们APP项目上线之后,需要一个宣传推广专题页,这个页面当然最好是采取响应式布局来完成.因为需要来推广和下载我们的APP. 无论用户是电脑打开,还是移动端打开,都是可以下载我们的APP. 今天,跟大家分享3个非常不错的响应式布局在线测试工具. 第一款:之前25学堂介绍过的responsinator,堪称手机版网站在线预览测试神器-responsinator 只要打开这个酷站,在上端的输入框中输入你想测试的网站URL 第

原生js实现查询天气的小应用

demo:https://zsqosos.github.io/weather/ 截图: 实现功能:打开网页时显示用户所在城市的天气状况,在输入框输入城市可查询其它城市. 实现过程:先调用百度地图的API来获取用户所在的城市,随后调用聚合数据的天气API将数据放在页面上.由于ajax不支持跨域,所以采用了jsonp的方式来调用数据. 实现的原理比较简单,HTML和css比较长,我就只将js代码贴出来,想看完整代码的朋友可以去我的github查看 https://github.com/zsqosos

实例——查询天气(将数据转化为json格式)

# -*- coding: utf-8 -*- import requests import json import sys reload(sys) sys.setdefaultencoding('utf8') def get_weather_data(): city = '深圳' url = 'http://wthrcdn.etouch.cn/weather_mini?city=' + city text = requests.get(url).text weather = json.load

微信开发中查询天气

现在网络上用的中国天气网的接口已经过期,需要付费,于是我做了个新的. 先到http://www.heweather.com/documents/api 免费申请 你的认证key 1 $url = 'https://api.heweather.com/x3/weather?cityid='.$city_id.'&key=XXX'; 2 $content=file_get_contents($url); 3 $data=json_decode($content,true); 4 // $data =

android查询天气demo,基于mvp+kotlin+rxjava2+room+retrofit2 (一)

前言 本文用于记录整个demo学习.开发的过程 一.key point 1.使用主流框架:mvp+kotlin+rxjava2+room+retrofit2 2.简结的ui/ux 3.第三方api的使用 https://www.sojson.com/blog/305.html 4.定期自动更新天气数据 原文地址:https://www.cnblogs.com/johnnyzhao/p/10337589.html