gpt4 book ai didi

webassembly - Blazor 表单提交需要两次单击才能刷新 View

转载 作者:行者123 更新时间:2023-12-03 23:36:07 25 4
gpt4 key购买 nike

我有以下 Blazor 组件,我正在测试 API 调用以获取天气数据。出于某种原因,需要单击提交按钮两次才能使表格显示更新后的对象的属性。

当页面初始化时,我从浏览器中获取位置就好了,天气数据显示在表中没有问题。

获取数据.razor

@page "/fetchdata"
@using BlazingDemo.Client.Models
@using AspNetMonsters.Blazor.Geolocation

@inject HttpClient Http
@inject LocationService LocationService

<h1>Weather forecast</h1>
<p>This component demonstrates fetching data from the server.</p>

<div>
<EditForm Model="@weatherForm" OnValidSubmit="@GetWeatherDataAsync">
<DataAnnotationsValidator />
<ValidationSummary />
<InputText Id="cityName" bind-Value="@weatherForm.CityName" />
<button type="submit">Submit</button>
</EditForm>
</div>
<br />

@if (weatherData == null)
{
<Loader/>
}
else
{
<table class="table">
<thead>
<tr>
<th>City</th>
<th>Conditions</th>
<th>Temp. (C)</th>
</tr>
</thead>
<tbody>
<tr>
<td>@weatherData.Name</td>
<td>@weatherData.Weather[0].Main</td>
<td>@weatherData.Main.Temp</td>
</tr>
</tbody>
</table>
}

@functions {

WeatherFormModel weatherForm = new WeatherFormModel();
WeatherData weatherData;
Location location;

protected override async Task OnInitAsync()
{
location = await LocationService.GetLocationAsync();

if (location != null)
{
weatherData = await GetWeatherDataAsync(location.Latitude,location.Longitude);
}
}

protected async Task<WeatherData> GetWeatherDataAsync(decimal latitude, decimal longitude)
{
return await Http.GetJsonAsync<WeatherData>($"https://api.openweathermap.org/data/2.5/weather?lat={location.Latitude}&lon={location.Longitude}&units=metric&appid=***removed***");
}

protected async void GetWeatherDataAsync()
{
weatherData = await Http.GetJsonAsync<WeatherData>($"https://api.openweathermap.org/data/2.5/weather?q={weatherForm.CityName}&units=metric&appid=***removed***");
}
}

WeatherFormModel.cs
namespace BlazingDemo.Client.Models
{
public class WeatherFormModel
{
[Required, Display(Name = "City Name")]
public string CityName { get; set; }

public bool IsCelcius { get; set; }
}
}

我正在调用 GetWEatherDataAsync()方法,我可以通过检查 Chrome 的返回 JSON 数据来查看每次调用时从 API 返回的数据。它只是永远不会在第一次点击时更新表格。我也试过设置 weatherDatanull在调用该方法之前,但这也不起作用。

有什么建议?

最佳答案

当您点击“提交”按钮时,将调用 GetWeatherDataAsync() 方法,并将数据检索到 weatherData 变量中......并结束其任务......

通常,组件在其事件被触发后重新渲染;即不需要手动调用StateHasChanged()方法来重新渲染组件。它由 Blazor 自动调用。但在这种情况下,您确实需要手动添加 StateHasChanged() 方法以重新渲染组件。因此你的代码应该是这样的:

protected async void GetWeatherDataAsync()
{
weatherData = await Http.GetJsonAsync<WeatherData>($"https://api.openweathermap.org/data/2.5/weather?q={weatherForm.CityName}&units=metric&appid=***removed***");

StateHasChanged();
}

“提交”事件是 Blazor 中唯一一个默认情况下由 Blazor 阻止其操作的事件。 “提交”事件并没有真正将表单发布到服务器。见: https://github.com/aspnet/AspNetCore/blob/master/src/Components/Browser.JS/src/Rendering/BrowserRenderer.ts .所以在我看来......,这只是一个猜测,Blazor 对待它的方式不同,并且不会调用 StateHasChanged 方法来刷新组件。

关于webassembly - Blazor 表单提交需要两次单击才能刷新 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56436577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com