gpt4 book ai didi

json - 使用 Http.GetJsonAsync 发送参数

转载 作者:行者123 更新时间:2023-12-01 21:50:00 25 4
gpt4 key购买 nike

我在 Blazor 应用程序中有以下代码,它调用 API 并根据用户 ID 参数检索项目列表。

Http.GetJsonAsync 似乎不允许我输入参数。如何将 userid 变量指定为参数?

调用 API

protected override async Task OnInitializedAsync()
{
userid = await localStorage.GetItemAsync<string>("userid");

myTrades = await Http.GetJsonAsync<ItemForTrade[]>("api/Trading/GetTradesForUser");
}

API代码

[Authorize]
[HttpGet("[action]")]
public async Task<List<ItemForTrade>> GetTradesForUser(string userid)
{
return await tradingService.GetTradesForUser(userid);
}

最佳答案

HttpGet 通过 URL 传递参数,所以很简单,就像在 URL 中添加 ?userid=value 一样:

myTrades = await Http.GetJsonAsync<ItemForTrade[]>("api/Trading/GetTradesForUser?userid=" + userid);

关于json - 使用 Http.GetJsonAsync 发送参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59671959/

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