Refit使用入门

简介: 本文介绍了如何使用Refit库在.NET Core项目中实现RESTful API的调用。通过创建`IGitHubApi`接口定义API方法,并在`Program.cs`中配置Refit客户端,最后在`WeatherForecastController`中演示了两种调用API的方式,展示了Refit的便捷性和类型安全性。

前言

原文:Refit: The automatic type-safe REST library for .NET Core, Xamarin and .NET

百度翻译:Refit:适用于.NET Core、Xamarin和.NET的自动类型安全REST库

官方网站:https://github.com/reactiveui/refit

新建weapi项目并添加包Refit与Refit.HttpClientFactory

新建接口IGitHubApi.cs

using Refit;

namespace RefitDemo
{
    public interface IGitHubApi
    {
        [Get("/WeatherForecast")]
        Task<IEnumerable<WeatherForecast>> GetWeatherForecastList();
    }
}

修改Program.cs

builder.Services
    .AddRefitClient<IGitHubApi>()
    .ConfigureHttpClient(c => c.BaseAddress = new Uri("https://localhost:7159"));

这里的7159改成你的项目端口

修改WeatherForecastController.cs

using Microsoft.AspNetCore.Mvc;
using Refit;

namespace RefitDemo.Controllers
{
    [ApiController]
    [Route("[controller]")]
    public class WeatherForecastController : ControllerBase
    {
        private static readonly string[] Summaries = new[]
        {
            "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
        };

        private readonly ILogger<WeatherForecastController> _logger;
        private readonly IGitHubApi _gitHubApi;
        public WeatherForecastController(ILogger<WeatherForecastController> logger, IGitHubApi gitHubApi)
        {
            _logger = logger;
            _gitHubApi = gitHubApi;
        }

        [HttpGet(Name = "GetWeatherForecast")]
        public IEnumerable<WeatherForecast> Get()
        {
            return Enumerable.Range(1, 5).Select(index => new WeatherForecast
            {
                Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
                TemperatureC = Random.Shared.Next(-20, 55),
                Summary = Summaries[Random.Shared.Next(Summaries.Length)]
            })
            .ToArray();
        }

        [HttpPost(Name = "GetTest")]
        public async Task<IEnumerable<WeatherForecast>> GetTestAsync()
        {
            return await _gitHubApi.GetWeatherForecastList();
        }

        [HttpPost("GetTest1")]
        public async Task<IEnumerable<WeatherForecast>> GetTest1Async()
        {
            var gitHubApi = RestService.For<IGitHubApi>("https://localhost:7159");
            return await gitHubApi.GetWeatherForecastList();
        }
    }
}

这里代码就是这两种调用方式

        [HttpPost(Name = "GetTest")]
        public async Task<IEnumerable<WeatherForecast>> GetTestAsync()
        {
            return await _gitHubApi.GetWeatherForecastList();
        }

        [HttpPost("GetTest1")]
        public async Task<IEnumerable<WeatherForecast>> GetTest1Async()
        {
            var gitHubApi = RestService.For<IGitHubApi>("https://localhost:7159");
            return await gitHubApi.GetWeatherForecastList();
        }

后面两个api就是Refit的调用结果

作者

吴晓阳(手机:13736969112微信同号)

目录
相关文章
|
8月前
|
编译器 C++
【c++】入门4
【c++】入门4
61 2
|
7月前
|
编译器 Linux C语言
1.C++入门(中)
1.C++入门(中)
|
7月前
|
存储 安全 编译器
1.C++入门(下)
1.C++入门(下)
|
存储 安全 编译器
|
8月前
|
Kubernetes 开发工具 Docker
K8S 极速入门
K8S 极速入门
101 0
|
8月前
|
前端开发 Java 数据库
SprigMVC的入门
SprigMVC的入门
59 0
|
Linux 编译器 C语言
|
存储 Java
ASN.1入门(超详细)
ASN.1入门(超详细)
905 0
|
编译器 C++
【C++】C++入门(三)
【C++】C++入门(三)
102 0
|
编译器 C语言 C++
【C++】C++入门(上)
【C++】C++入门(上)
73 0

相关实验场景

更多