Я новичок в изучении того, как реализовать API открытой погоды.Я не полностью знаю, как показать данные для просмотра бритвой.Так что, если бы я хотел показать темп, как бы я это сделал.Я не хочу использовать viewbag для отображения данных.
Я использую кортеж в виде бритвы для реализации 2 моделей.OpenweatherModel, которая принимает почтовый индекс в качестве ввода.Другой - RootObject, который является классом внутри Json.cs и содержит информацию о json, такую как temp, координаты, описание и т. Д.
Api
public class ApiController
{
public async Task<Json.RootObject> GetResult(int zipCode)
{
const string apiKey = "";
var client = new HttpClient();
var response = await client.GetAsync("http://api.openweathermap.org/data/2.5/weather?zip=" +
zipCode + ",us&APPID=" + apiKey);
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
return JsonConvert.DeserializeObject<Json.RootObject>(responseBody);
}
Home
[HttpGet]
public ActionResult Main()
{
return View();
}
[HttpPost]
public async Task<ActionResult> Main(int zipCode)
{
var controller = new ApiController();
var rootObject = await controller.GetResult(zipCode);
var tuple = new Tuple<OpenWeatherMap, RootObject>(new OpenWeatherMap(), new RootObject());
return View(tuple);
}
Razor
@model Tuple<Weather.Models.OpenWeatherMap, Weather.HelperClasses.Json.RootObject>
<div>
@using (Html.BeginForm("Main", "Home", FormMethod.Post, new { @class = "container" }))
{
@Html.TextBoxFor(tuple =>tuple.Item1.zipCode, new {@Name = "zipCode", @class = "inputs", required = "Required", placeholder = "Enter ZipCode" })
<input id="submit" type="submit" value="Search" />
foreach (var items in Model.Item2.weather)
{
<h1>@items.description</h1>
}
}
</div>
RootObject
public class RootObject
{
public Coord coord { get; set; }
public List<Weather> weather { get; set; }
public string @base { get; set; }
public Main main { get; set; }
public int visibility { get; set; }
public Wind wind { get; set; }
public Clouds clouds { get; set; }
public int dt { get; set; }
public Sys sys { get; set; }
public int timezone { get; set; }
public int id { get; set; }
public string name { get; set; }
public int cod { get; set; }
}