在C#中使用Flurl處理JSON數據,您可以使用Flurl.Http庫來發送HTTP請求并處理響應的JSON數據。以下是一個簡單的示例代碼:
using Flurl.Http;
using System;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
var response = await "https://jsonplaceholder.typicode.com/posts/1"
.GetJsonAsync<Post>();
Console.WriteLine($"Title: {response.Title}");
Console.WriteLine($"Body: {response.Body}");
}
public class Post
{
public int UserId { get; set; }
public int Id { get; set; }
public string Title { get; set; }
public string Body { get; set; }
}
}
在上面的示例中,我們使用Flurl發送一個GET請求獲取JSON數據,并將響應轉換為Post類的實例。然后我們可以訪問Post對象的屬性來獲取JSON數據中的值。