您好,欢迎访问一九零五行业门户网

angularjs实现天气预报功能详解

本文主要为大家详细介绍了angularjs实现天气预报功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。
本文实例为大家分享了android九宫格图片展示的具体代码,供大家参考,具体内容如下
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>天气</title> <script src="../angular-1.5.5/angular.min.js"></script> <script> var u1="https://free-api.heweather.com/v5/weather?city="; var u2; var u3="&key=545d63e185fc48169a43cbabba6e74d2"; var my=angular.module("my",[]); my.controller("mys",function ($scope,$http) { $scope.city="beijing"; $scope.show=false; $scope.search=function () { u2=$scope.city; $scope.show=true; $http({ url:u1+u2+u3 }).then(function (data) { $scope.cityname=data.data.heweather5[0].basic.city; $scope.date=data.data.heweather5[0].daily_forecast[0].date; $scope.mtemp=data.data.heweather5[0].daily_forecast[0].tmp.max; $scope.xtemp=data.data.heweather5[0].daily_forecast[0].tmp.min; }) $scope.city=""; }; }) </script> </head> <body ng-app="my" ng-controller="mys"> <input type="text" ng-model="city"/><button ng-click="search()">点击查询</button> <ul ng-show="show"> <li>{{cityname}}</li> <li>{{date}}</li> <li>{{mtemp}}</li> <li>{{xtemp}}</li> </ul> </body> </html>
相关推荐:
小程序开发之天气预报
微信小程序开发天气预报实例代码
html5天气预报卡片设计效果
以上就是angularjs实现天气预报功能详解的详细内容。
其它类似信息

推荐信息