我正在嘗試做一個獲取請求,這是我的剃刀頁面類:
public class IndexModel : PageModel
{
public IEnumerable<ApiAnime> ApiData { get; set; }
public async Task<IActionResult> OnGet()
{
var request = new HttpRequestMessage(HttpMethod.Get,
"https://api.aniapi.com/v1/anime");
var client = _clientFactory.CreateClient();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var response = await client.SendAsync(request);
if (response.IsSuccessStatusCode)
{
var responseStream = await response.Content.ReadAsStreamAsync();
ApiData = await JsonSerializer.DeserializeAsync<IEnumerable<ApiAnime>>(responseStream);
}
else
{
ApiData = new List<ApiAnime>();
}
return Page();
}
}
這個剃刀頁面類似乎可以使用更簡單或更直接的 json 值。但是使用這個 api "https://api.aniapi.com/v1/anime" 它似乎不起作用。現在這是我的 json 類:
public class ApiAnime
{
public class Rootobject
{
public int status_code { get; set; }
public string message { get; set; }
public Data data { get; set; }
public string version { get; set; }
}
public class Data
{
public int current_page { get; set; }
public int count { get; set; }
public Document[] documents { get; set; }
public int last_page { get; set; }
}
public class Document
{
public int anilist_id { get; set; }
public int mal_id { get; set; }
public int format { get; set; }
public int status { get; set; }
public Titles titles { get; set; }
public Descriptions descriptions { get; set; }
public DateTime start_date { get; set; }
public DateTime end_date { get; set; }
public int season_period { get; set; }
public int season_year { get; set; }
public int episodes_count { get; set; }
public int episode_duration { get; set; }
public string trailer_url { get; set; }
public string cover_image { get; set; }
public string cover_color { get; set; }
public string banner_image { get; set; }
public string[] genres { get; set; }
public int score { get; set; }
public int id { get; set; }
public int prequel { get; set; }
public int sequel { get; set; }
}
}
我得到的錯誤是
The JSON value could not be converted to System.Collections.Generic.IEnumerable`1[AnimDbNet.ApiModel.ApiAnime].
ApiData = await JsonSerializer.DeserializeAsync<IEnumerable<ApiAnime>>(responseStream);
我正在使用 .NET Core 5。有誰知道如何解決這個錯誤?
uj5u.com熱心網友回復:
您不需要 IEnumerable,這應該通過使用 Rootobject 來作業。
JsonSerializer.DeserializeAsync<Rootobject>(responseStream);
此 API 發送的 json 開頭為:
{
"status_code": 200,
"message": "Page 1 contains 100 anime. Last page number is 153 for a total of 15280 anime",
"data": {
...
這是根物件的開始。
uj5u.com熱心網友回復:
錯誤來自嘗試決議 API 的回傳值,該值不是 JSON 陣列,而是 JSON 物件,而不是 IEnumerable。
ApiData = await JsonSerializer.DeserializeAsync<IEnumerable<ApiAnime>>(responseStream);
解決方案是直接決議為ApiAnime.Rootobject,然后使用apiData.Data來訪問頁面上的資料。你的代碼看起來像這樣。
public class IndexModel : PageModel
{
public ApiAnime.Rootobject ApiData { get; set; }
public async Task<IActionResult> OnGet()
{
var request = new HttpRequestMessage(HttpMethod.Get,
"https://api.aniapi.com/v1/anime");
var client = _clientFactory.CreateClient();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var response = await client.SendAsync(request);
if (response.IsSuccessStatusCode)
{
var responseStream = await response.Content.ReadAsStreamAsync();
ApiData = await JsonSerializer.DeserializeAsync<ApiAnime.Rootobject>(responseStream);
}
else
{
ApiData = new ApiAnime.Rootobject();
}
return Page();
}
}
uj5u.com熱心網友回復:
你不需要 IEnumerable。試試這個代碼。它在 Visual Studio 中進行了測驗并且可以正常作業。
public class IndexModel : PageModel
{
public ApiData ApiData { get; set; }
public async Task<IActionResult> OnGet()
{
var apiDataRoot= await GetApiData(_httpClientFactory);
if (apidatRoot.status_code=200) ApiData=apiDataRoot.ApiData;
else ... return error;
return Page();
}
}
獲取資料
public async Task<ApiDataRoot> GetApiData(IHttpClientFactory httpClientFactory)
{
var request = new HttpRequestMessage(HttpMethod.Get,
"https://api.aniapi.com/v1/anime");
var client = httpClientFactory.CreateClient();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var response = await client.SendAsync(request);
ApiDataRoot apiDataRoot = null;
if (response.IsSuccessStatusCode)
{
var responseString = await response.Content.ReadAsStringAsync();
apiDataRoot = System.Text.Json.JsonSerializer.Deserialize<ApiDataRoot>(responseString);
}
else
{
apiDataRoot = new ApiDataRoot {status_code=400, message="error"};
}
return apiDataRoot;
}
班級
public class ApiData
{
public int current_page { get; set; }
public int count { get; set; }
public List<Document> documents { get; set; }
public int last_page { get; set; }
}
public class ApiDataRoot
{
public int status_code { get; set; }
public string message { get; set; }
public ApiData data { get; set; }
public string version { get; set; }
}
public class Titles
{
public string en { get; set; }
public string jp { get; set; }
public string it { get; set; }
}
public class Descriptions
{
public string en { get; set; }
public string it { get; set; }
}
public class Document
{
public int anilist_id { get; set; }
public int mal_id { get; set; }
public int format { get; set; }
public int status { get; set; }
public Titles titles { get; set; }
public Descriptions descriptions { get; set; }
public DateTime start_date { get; set; }
public DateTime end_date { get; set; }
public int season_period { get; set; }
public int season_year { get; set; }
public int episodes_count { get; set; }
public int episode_duration { get; set; }
public string trailer_url { get; set; }
public string cover_image { get; set; }
public string cover_color { get; set; }
public string banner_image { get; set; }
public List<string> genres { get; set; }
public int score { get; set; }
public int id { get; set; }
public int? prequel { get; set; }
public int? sequel { get; set; }
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/325419.html
標籤:C# asp.net .net核心 剃刀页 asp.net-core-5.0
