.net几行代码音乐API各排行榜 热搜 入库

对比了几家大厂的音乐API的接口 这家相对规范些

现在开始从零开始 net6敏捷开发对接 入库吧

关键技术工具和思维

  1. 1 json 生成类
  2. 2 分析类 规划表设计
  3. 3 sqlsuger codefirst 生成表
  4. 4 封装get post 连接
  5. 5 类映射automapper
  6. 6 sqlsuger 插入数据

1 json 生成类

宇宙 第 一的编辑器生成 相应的类

cs 复制代码
using miniAPI.Model;

namespace miniAPI.Models
{
    public class QQtoplistDTO
    { 

        public class DataQQtoplistDTO
        {
            public List<Toplist> topList { get; set; }
        }

        public class Toplist
        {
            public DateTime CreateDate { get; set; } 
            public int id { get; set; }
            public int listenCount { get; set; }
            public string picUrl { get; set; }
            public List<TopSonglist> songList { get; set; }
            public string topTitle { get; set; }
            public int type { get; set; }
        }

        //public class Songlist
        //{
        //    public string singername { get; set; }
        //    public string songname { get; set; }
        //}

    }

    public class Outputpara<T>
    {
        private int _code = 500;
        public int code
        {
            get { return _code; }
            set { _code = value; }
        }
        public int subcode { get; set; }
        private string _msg = "";
        public string msg
        {
            get { return _msg; }
            set { _msg = value; }
        }
        public string message { get; set; }
        public int _default { get; set; }
        //public Data data { get; set; }
        public T data { get; set; }
    }

}

2 分析类 规划表设计

排行榜单 维度和songlist的明细

3 codefirst 生成表

sqlsuger 爽得不要不要的

4 封装get post 连接

使用 httpClientFactory

cs 复制代码
 {
 private IHttpClientFactory _httpClientFactory;
        private readonly Cachelper _cachelper;
        private readonly IMapper _mapper;
        public MusicApibyqqController(IMapper mapper, IHttpClientFactory httpClientFactory, Cachelper cachelper)
        {
            _mapper = mapper;
            _httpClientFactory = httpClientFactory;
            _cachelper = cachelper;
        } 

  [HttpGet]
        [Route("createmusicapibyqq")]
        public async Task<string> CreateMusicApibyqqIndex()
        {
 var client = _httpClientFactory.CreateClient();
            var param = new {   };
            string jsonData = System.Text.Json.JsonSerializer.Serialize(param);
            StringContent paramContent = new StringContent(jsonData);

 var logOutResponse = await client.GetAsync(url);
                string resultStr = await logOutResponse.Content.ReadAsStringAsync();
                Outputpara<DataQQtoplistDTO> response = System.Text.Json.JsonSerializer.Deserialize<Outputpara<DataQQtoplistDTO>>(resultStr);
       Console.WriteLine($"url:{url},  成功");
                }
                else
                {
                    Console.WriteLine($"url:{url}, 失败");
                }
            }; 
            return "同步完毕 toplist:" + listToplist.Count+ " TopSonglist:"+ listTopSonglist.Count;
}

5 类映射automapper

cs 复制代码
using AutoMapper;
using miniAPI.Model;
using static miniAPI.Models.QQtoplistDTO;

namespace miniAPI.Config
{
    /// <summary>
    /// Dto的映射配置
    /// </summary>
    public class AutoMapperConfigs : Profile
    {
        public AutoMapperConfigs()
        {
            //从 Toplist=》 TopMusiclist
            CreateMap<Toplist, TopMusiclist>(); 
        }
    }
}

注册

cs 复制代码
//Automapper映射
builder.Services.AddAutoMapper(typeof(AutoMapperConfigs));

映射 使用

_mapper.Map(temptoplist, tempTopMusiclist);

6 插入数据

cs 复制代码
 foreach (var temptoplist in response?.data?.topList)
                    { 
                        TopMusiclist tempTopMusiclist = new TopMusiclist(); 
                        _mapper.Map(temptoplist, tempTopMusiclist);
                        tempTopMusiclist.CreateDate = DateTime.Now;
                        tempTopMusiclist.codeid = temptoplist.id;
                        listToplist.Add(tempTopMusiclist);
                        foreach (var tempsongList in temptoplist.songList)
                        {
                            tempsongList.codeid=temptoplist.id; 
                            listTopSonglist.Add(tempsongList);
                        } 
                    } 
                    SqlSugarHelper.addtoplist(listToplist);
                    SqlSugarHelper.addtopSonglist(listTopSonglist); 
cs 复制代码
    Db.Insertable(listToplist).ExecuteCommand();

开始使用数据吧 据说API不能商用 QAQ 但放出来干啥QAQ

相关推荐
唐青枫3 天前
线程不是越多越快:C#.NET Thread 生命周期、同步与后台工作线程实战
c#·.net
用户7783366132113 天前
从 Serper 切到 SERP API:200 行代码 diff 实战
api
唐青枫4 天前
别只会反射:C#.NET Emit 动态生成代码实战详解
c#·.net
Caco_D4 天前
一行代码抓遍全网 20 个热榜!Aneiang.Pa 4.0 发布 — 极简 .NET 爬虫库
爬虫·.net
咕白m6254 天前
.NET 环境下 Word 超链接批量提取方案
c#·.net
小码编匠5 天前
C# 工控上位机必备:数据转换工具类与十个核心模块
后端·c#·.net
疯狂SQL5 天前
手写高性能在线 JSON 工具|Web Worker 工程化打包 + 语法自动修复 + 多语言代码生成实战
typescript·json·next.js·web worker·前端性能优化·esbuild·源码实战
唐青枫7 天前
别再乱用 StartNew:C#.NET TaskFactory 任务调度实战详解
c#·.net
2601_9620725510 天前
李梦娇常识4600问|题库|打印版
sql·华为od·华为·c#·华为云·.net·harmonyos