SoFunction
Updated on 2025-04-04

angularjs implements weather forecasting function

This article has shared the specific code for angularjs to implement weather forecast for your reference. The specific content is as follows

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>weather</title>
 <script src="../angular-1.5.5/"></script>
 <script>
  var u1="/v5/weather?city=";
  var u2;
  var u3="&key=545d63e185fc48169a43cbabba6e74d2";
  var my=("my",[]);
  ("mys",function ($scope,$http) {
   $="beijing";
   $=false;
   $=function () {
     u2=$;
     $=true;
     $http({
      url:u1+u2+u3
     }).then(function (data) {
      $=.HeWeather5[0].;
      $=.HeWeather5[0].daily_forecast[0].date;
      $=.HeWeather5[0].daily_forecast[0].;
      $=.HeWeather5[0].daily_forecast[0].;
     })
    $="";
   };
  })
 </script>
</head>
<body ng-app="my" ng-controller="mys">
 <input type="text" ng-model="city"/><button ng-click="search()">Click to query</button>
 <ul ng-show="show">
  <li>{{cityName}}</li>
  <li>{{date}}</li>
  <li>{{mTemp}}</li>
  <li>{{xTemp}}</li>
 </ul>
</body>
</html>

The above is all the content of this article. I hope it will be helpful to everyone's study and I hope everyone will support me more.