目录

介绍

备注

背景

推定(Presumptions)

使用代码

步骤0:将NuGet package WebApiClientGen和WebApiClientGen.jQuery安装到Web API项目

步骤1:准备JSON配置数据

步骤2:运行Web API项目的DEBUG构建和POST JSON配置数据以触发客户端API代码的生成

发布客户端API库

内部用法

外部用法

兴趣点


  • GitHub上的代码示例

介绍

用于开发ASP.NET Web API或ASP.NET Core Web API的客户端程序,  强类型客户端API生成器以C#代码和TypeScript代码生成强类型客户端API,以最大程度地减少重复性任务并提高应用程序开发人员的生产率和产品质量。然后,您可以向自己以及团队或B2B合作伙伴中的其他开发人员提供或发布所生成的源代码或已编译的客户端API库。

该项目提供以下产品:

  1. C#中用于强类型客户端API的代码生成器,支持桌面,Universal Windows,Android和iOS。
  2. 用于jQuery,Angular 2+和Aurelia的TypeScript以及使用Axios的 TypeScript / JavaScript应用程序中的强类型客户端API的代码生成器。
  3. TypeScript CodeDOM,一种TypeScript的CodeDOM组件,从.NET Framework的CodeDOM派生而来。
  4. POCO2TS.exe,这是一个从POCO类生成TypsScript接口的命令行程序。
  5. Fonlow.Poco2Ts,从POCO类生成TypsScript接口的组件

本文重点介绍为jQuery生成TypeScript客户端API。

备注

自2016年6月WebApiClientGen v1.9.0-beta 版本起,Angular2的支持就一直可用,当时Angular 2仍在RC1中。从WebApiClientGen v2.0 版本开始支持Angular 2生产版本。

即使您正在执行JavaScript编程,仍可以使用WebApiClientGen,因为可以将生成的TypeScript文件编译为JavaScript文件。尽管您不会获得设计时类型检查和编译时类型检查,但是只要您的JS编辑器支持这种功能,您仍然可以享受源代码文档对设计时的智能感知。

背景

如果您曾经使用WCF开发了基于SOAP的Web服务,则可能会喜欢使用由SvcUtil.exe生成的客户端API代码或Visual Studio IDE的Web服务引用。转向Web API时,我感到自己回到了石器时代,因为在设计时我必须利用我的宝贵脑力进行大量数据类型检查,而计算机应该完成这项工作。

早在2010年,我就在IHttpHandler/IHttpModule 的基础上开发了一些RESTful Web服务,这些服务不需要强类型数据,而需要文档和流之类的任意数据。但是,我已经获得了更多具有复杂业务逻辑和数据类型的Web项目,并且我将在整个SDLC中使用高度抽象和语义的数据类型。

我看到ASP.NET Web API确实通过类ApiController支持高度抽象和强类型化的函数原型,并且ASP.NET MVC框架可选地提供生成良好的描述API函数的帮助页面。但是,在开发了Web API之后,我不得不手工制作一些非常原始且重复的客户端代码来使用Web服务。如果Web API是由其他人开发的,那么我必须阅读在线帮助页面,然后进行编写。

因此,我进行了搜索并试图找到一些解决方案,这些解决方案可以使我摆脱编写原始代码和重复代码的麻烦,因此我可以专注于在客户端上基于更高技术抽象的业务逻辑构建。以下是协助客户程序开发的开源项目列表:

  1. WADL
  2. RAML with .NET
  3. WebApiProxy
  4. Swashbuckle
  5. AutoRest
  6. OData
  7. TypeLITE
  8. TypeWriter

虽然这些解决方案可以生成强类型的客户端代码并在某种程度上减少重复的任务,但我发现它们都无法给我带来我期望的所有高效编程经验:

  1. 映射到服务数据模型的强类型客户端数据模型。
  2. 强类型函数原型映射到的派生类ApiController的功能。
  3. 像WCF编程那样以批发方式生成代。
  4. 使用流行的属性(如DataContractAttribute和JsonObjectAttribute等)通过数据注释来挑选数据模型。
  5. 在设计时和编译时进行类型检查。
  6. 用于客户端数据模型,功能原型和文档注释的智能感知。

这是WebApiClientGen。

推定(Presumptions)

  1. 您将开发ASP.NET Web API 2.x应用程序,并将开发基于jQuery或SPA和Angular2的基于AJAX的Web前端的JavaScript库。
  2. 您和开发人员都喜欢通过服务器端和客户端中的强类型函数来实现高度抽象,并且使用TypeScript。
  3. Web API和Entity Framework Code First都使用POCO类,并且您可能不想将所有数据类和成员发布到客户端程序。

并且,可选地,如果您或您的团队认可基于Trunk的开发会更好,因为WebApiClientGen的设计和使用 WebApiClientGen的工作流程正在考虑基于Trunk的开发,与其他分支策略(如功能分支和Gitflow等)相比,这种方法对于持续集成更为有效。

为了跟进这种开发客户端程序的新方法,最好拥有一个ASP.NET Web API项目或一个包含Web API的MVC项目。您可以使用现有项目,也可以创建一个演示项目。

使用代码

本文重点介绍jQuery的代码示例。

步骤0:将NuGet package WebApiClientGen和WebApiClientGen.jQuery安装到Web API项目

安装还将安装相关的NuGet软件包Fonlow.TypeScriptCodeDOM和Fonlow.Poco2Ts项目引用。

HttpClient的助手库 应与生成的代码一起复制到Scripts文件夹中,这些代码将在每次执行CodeGen时更新。

此外,用于触发CodeGen的CodeGenController.cs已添加到项目的Controllers文件夹中。

CodeGenController选项仅在调试版本的开发过程中可用,因为应该为每个版本的Web API生成一次客户端API。

#if DEBUG  //This controller is not needed in production release, // since the client API should be generated during development of the Web Api.
...namespace Fonlow.WebApiClientGen
{[System.Web.Http.Description.ApiExplorerSettings(IgnoreApi = true)]//this controller is a //dev backdoor during development, no need to be visible in ApiExplorer.public class CodeGenController : ApiController{/// <summary>/// Trigger the API to generate WebApiClientAuto.cs for an established client API project./// POST to  http://localhost:10965/api/CodeGen with json object CodeGenParameters/// </summary>/// <param name="parameters"></param>/// <returns>OK if OK</returns>[HttpPost]public string TriggerCodeGen(CodeGenParameters parameters){
...}}

备注

  1. CodeGenController已安装在YourMvcOrWebApiProject/Controllers,即使MVC项目的脚手架可能具有用于ApiController的派生类的文件夹API 。但是,通常最好在独立的Web API项目中实现Web API。并且,如果您希望MVC项目和Web API项目在同一网站中运行,则可以将Web API作为MVC网站的应用程序进行安装。
  2. WebApiClientGenCore不安装CodeGenController,您应该复制该文件

启用Web API的文档注释

C:\YourWebSlnPath\Your.WebApi\Areas\HelpPage\App_Start\HelpPageConfig.cs,有以下行:

//config.SetDocumentationProvider(new XmlDocumentationProvider
(HttpContext.Current.Server.MapPath("~/App_Data/XmlDocument.xml")));

取消注释,使其像这样:

config.SetDocumentationProvider(new XmlDocumentationProvider
(HttpContext.Current.Server.MapPath("~/bin/Your.WebApi.xml")));

在项目“属性”页面的“Build”选项卡中,检查“输出/XML文档文件”并设置“bin\Your.WebApi.xml”,而输出路径默认情况下为“bin”。

如果您有用于数据模型的其他程序集,则可以执行相同的操作以确保生成文档注释并将其复制到客户端API。

步骤1:准备JSON配置数据

您的Web API项目可能具有POCO类和类似blow的API函数。[ 数据模型和ApiController的完整代码示例]

namespace DemoWebApi.DemoData
{public sealed class Constants{public const string DataNamespace = "http://fonlow.com/DemoData/2014/02";}[DataContract(Namespace = Constants.DataNamespace)]public enum AddressType{[EnumMember]Postal,[EnumMember]Residential,};[DataContract(Namespace = Constants.DataNamespace)]public enum Days{[EnumMember]Sat = 1,[EnumMember]Sun,[EnumMember]Mon,[EnumMember]Tue,[EnumMember]Wed,[EnumMember]Thu,[EnumMember]Fri};[DataContract(Namespace = Constants.DataNamespace)]public class Address{[DataMember]public Guid Id { get; set; }public Entity Entity { get; set; }/// <summary>/// Foreign key to Entity/// </summary>public Guid EntityId { get; set; }[DataMember]public string Street1 { get; set; }[DataMember]public string Street2 { get; set; }[DataMember]public string City { get; set; }[DataMember]public string State { get; set; }[DataMember]public string PostalCode { get; set; }[DataMember]public string Country { get; set; }[DataMember]public AddressType Type { get; set; }[DataMember]public DemoWebApi.DemoData.Another.MyPoint Location;}[DataContract(Namespace = Constants.DataNamespace)]public class Entity{public Entity(){Addresses = new List<Address>();}[DataMember]public Guid Id { get; set; }[DataMember(IsRequired =true)]//MVC and Web API does not care[System.ComponentModel.DataAnnotations.Required]//MVC and Web API care about only thispublic string Name { get; set; }[DataMember]public IList<Address> Addresses { get; set; }public override string ToString(){return Name;}}[DataContract(Namespace = Constants.DataNamespace)]public class Person : Entity{[DataMember]public string Surname { get; set; }[DataMember]public string GivenName { get; set; }[DataMember]public DateTime? BirthDate { get; set; }public override string ToString(){return Surname + ", " + GivenName;}}[DataContract(Namespace = Constants.DataNamespace)]public class Company : Entity{[DataMember]public string BusinessNumber { get; set; }[DataMember]public string BusinessNumberType { get; set; }[DataMember]public string[][] TextMatrix{ get; set; }[DataMember]public int[][] Int2DJagged;[DataMember]public int[,] Int2D;[DataMember]public IEnumerable<string> Lines;}...
...namespace DemoWebApi.Controllers
{[RoutePrefix("api/SuperDemo")]public class EntitiesController : ApiController{/// <summary>/// Get a person/// </summary>/// <param name="id">unique id of that guy</param>/// <returns>person in db</returns>[HttpGet]public Person GetPerson(long id){return new Person(){Surname = "Huang",GivenName = "Z",Name = "Z Huang",BirthDate = DateTime.Now.AddYears(-20),};}[HttpPost]public long CreatePerson(Person p){Debug.WriteLine("CreatePerson: " + p.Name);if (p.Name == "Exception")throw new InvalidOperationException("It is exception");Debug.WriteLine("Create " + p);return 1000;}[HttpPut]public void UpdatePerson(Person person){Debug.WriteLine("Update " + person);}[HttpPut][Route("link")]public bool LinkPerson(long id, string relationship, [FromBody] Person person){return person != null && !String.IsNullOrEmpty(relationship);}[HttpDelete]public void Delete(long id){Debug.WriteLine("Delete " + id);}[Route("Company")][HttpGet]public Company GetCompany(long id){

以下JSON配置数据将POST到CodeGen Web API:

{"ApiSelections": {"ExcludedControllerNames": ["DemoWebApi.Controllers.Account","DemoWebApi.Controllers.FileUpload"],"DataModelAssemblyNames": ["DemoWebApi.DemoData","DemoWebApi"],"CherryPickingMethods": 3},"ClientApiOutputs": {"ClientLibraryProjectFolderName": "..\\DemoWebApi.ClientApi","GenerateBothAsyncAndSync": true,"CamelCase": true,"Plugins": [{"AssemblyName": "Fonlow.WebApiClientGen.jQuery","TargetDir": "Scripts\\ClientApi","TSFile": "WebApiJQClientAuto.ts","AsModule": false,"ContentType": "application/json;charset=UTF-8"},{"AssemblyName": "Fonlow.WebApiClientGen.NG2","TargetDir": "..\\DemoNGCli\\NGSource\\src\\ClientApi","TSFile": "WebApiNG2ClientAuto.ts","AsModule": true,"ContentType": "application/json;charset=UTF-8"}]}
}

建议将JSON配置数据保存到Web API项目文件夹中的此类文件中。

如果在Web API项目中定义了所有POCO类,则应将Web API项目的程序集名称放在“DataModelAssemblyNames”数组中。如果您有一些专用的数据模型程序集可以很好地分离关注点,则应将相应的程序集名称放入数组中。

TypeScriptNG2Folder”是Angular2项目的绝对路径或相对路径。例如,“..\\DemoAngular2\\ClientApi”表示作为Web API项目的同级项目创建的Angular 2项目。

CodeGen根据“CherryPickingMethods” 从POCO类生成强类型TypeScript接口,这在下面的文档注释中进行了描述:

/// <summary>
/// Flagged options for cherry picking in various development processes.
/// </summary>
[Flags]
public enum CherryPickingMethods
{/// <summary>/// Include all public classes, properties and properties./// </summary>All = 0,/// <summary>/// Include all public classes decorated by DataContractAttribute,/// and public properties or fields decorated by DataMemberAttribute./// And use DataMemberAttribute.IsRequired/// </summary>DataContract =1,/// <summary>/// Include all public classes decorated by JsonObjectAttribute,/// and public properties or fields decorated by JsonPropertyAttribute./// And use JsonPropertyAttribute.Required/// </summary>NewtonsoftJson = 2,/// <summary>/// Include all public classes decorated by SerializableAttribute,/// and all public properties or fields/// but excluding those decorated by NonSerializedAttribute./// And use System.ComponentModel.DataAnnotations.RequiredAttribute./// </summary>Serializable = 4,/// <summary>/// Include all public classes, properties and properties./// And use System.ComponentModel.DataAnnotations.RequiredAttribute./// </summary>AspNet = 8,
}

默认值是opt-in的DataContract。您可以使用任何一种方法或方法的组合。

步骤2:运行Web API项目的DEBUG构建和POST JSON配置数据以触发客户端API代码的生成

在IIS Express上的IDE中运行Web项目。

然后使用 Cur或 Poster或任何你喜欢的客户端工具,将带有content-type=application/json的POSThttp://localhost:10965/api/CodeGen

提示

因此,基本上,每当更新Web API时,您仅需要步骤2即可生成客户端API,因为您不需要每次都安装NuGet包或制作新的JSON配置数据。

编写一些批处理脚本来启动Web API和POST JSON配置数据应该不难。为了方便起见,我实际上起草了一个:Powershell脚本文件,该文件在IIS Express上启动Web(API)项目,然后发布JSON配置文件以触发代码生成。

发布客户端API库

现在,您已经在TypeScript中生成了客户端API,类似于以下示例:

/// <reference path="../typings/jquery/jquery.d.ts" />
/// <reference path="HttpClient.ts" />
namespace DemoWebApi_DemoData_Client {export enum AddressType {Postal, Residential}export enum Days {Sat=1, Sun=2, Mon=3, Tue=4, Wed=5, Thu=6, Fri=7}export interface Address {Id?: string;Street1?: string;Street2?: string;City?: string;State?: string;PostalCode?: string;Country?: string;Type?: DemoWebApi_DemoData_Client.AddressType;Location?: DemoWebApi_DemoData_Another_Client.MyPoint;}export interface Entity {Id?: string;Name: string;Addresses?: Array<DemoWebApi_DemoData_Client.Address>;}export interface Person extends DemoWebApi_DemoData_Client.Entity {Surname?: string;GivenName?: string;BirthDate?: Date;}export interface Company extends DemoWebApi_DemoData_Client.Entity {BusinessNumber?: string;BusinessNumberType?: string;TextMatrix?: Array<Array<string>>;Int3D?: Array<Array<Array<number>>>;Lines?: Array<string>;}
}namespace DemoWebApi_DemoData_Another_Client {export interface MyPoint {X?: number;Y?: number;}
}namespace DemoWebApi_Controllers_Client {export class Entities {httpClient: HttpClient;constructor(public baseUri?: string, public error?: (xhr: JQueryXHR, ajaxOptions: string, thrown: string) => any, public statusCode?: { [key: string]: any; }){this.httpClient = new HttpClient();}/*** Get a person* GET api/Entities/{id}* @param {number} id unique id of that guy* @return {DemoWebApi_DemoData_Client.Person} person in db*/GetPerson(id: number, callback: (data : DemoWebApi_DemoData_Client.Person) => any){this.httpClient.get(encodeURI(this.baseUri + 'api/Entities/'+id), callback, this.error, this.statusCode);}/*** POST api/Entities* @param {DemoWebApi_DemoData_Client.Person} person* @return {number}*/CreatePerson(person: DemoWebApi_DemoData_Client.Person, callback: (data : number) => any){this.httpClient.post(encodeURI(this.baseUri + 'api/Entities'), person, callback, this.error, this.statusCode);}/*** PUT api/Entities* @param {DemoWebApi_DemoData_Client.Person} person* @return {void}*/UpdatePerson(person: DemoWebApi_DemoData_Client.Person, callback: (data : void) => any){this.httpClient.put(encodeURI(this.baseUri + 'api/Entities'), person, callback, this.error, this.statusCode);}/*** DELETE api/Entities/{id}* @param {number} id* @return {void}*/Delete(id: number, callback: (data : void) => any){this.httpClient.delete(encodeURI(this.baseUri + 'api/Entities/'+id), callback, this.error, this.statusCode);}}export class Values {httpClient: HttpClient;constructor(public baseUri?: string, public error?: (xhr: JQueryXHR, ajaxOptions: string, thrown: string) => any, public statusCode?: { [key: string]: any; }){this.httpClient = new HttpClient();}/*** GET api/Values* @return {Array<string>}*/Get(callback: (data : Array<string>) => any){this.httpClient.get(encodeURI(this.baseUri + 'api/Values'), callback, this.error, this.statusCode);}/*** GET api/Values/{id}?name={name}* @param {number} id* @param {string} name* @return {string}*/GetByIdAndName(id: number, name: string, callback: (data : string) => any){this.httpClient.get(encodeURI(this.baseUri + 'api/Values/'+id+'?name='+name), callback, this.error, this.statusCode);}/*** POST api/Values* @param {string} value* @return {string}*/Post(value: {'':string}, callback: (data : string) => any){this.httpClient.post(encodeURI(this.baseUri + 'api/Values'), value, callback, this.error, this.statusCode);}/*** PUT api/Values/{id}* @param {number} id* @param {string} value* @return {void}*/Put(id: number, value: {'':string}, callback: (data : void) => any){this.httpClient.put(encodeURI(this.baseUri + 'api/Values/'+id), value, callback, this.error, this.statusCode);}/*** DELETE api/Values/{id}* @param {number} id* @return {void}*/Delete(id: number, callback: (data : void) => any){this.httpClient.delete(encodeURI(this.baseUri + 'api/Values/'+id), callback, this.error, this.statusCode);}}
}

提示

1.如果希望生成的TypeScript代码符合JavaScript和JSON的驼峰式格式,则可以在Web API的脚手架代码类WebApiConfig中添加以下行:

config.Formatters.JsonFormatter.SerializerSettings.ContractResolver = new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver();

如果C#中的相应名称是Pascal式格式,则属性名称和函数名称将是驼峰式格式。有关更多详细信息,请检查camelCasing或PascalCasing。

2. PowerShell脚本还将TS文件编译为JS文件。

内部用法

在像Visual Studio这样的不错的文本编辑器中编写客户端代码时,您可能会得到很好的智能感知。

外部用法

如果希望某些外部开发人员通过JavaScript使用Web API,则可以发布生成的TypeScript客户端API文件或已编译的JavaScript文件,以及ASP.NET MVC框架生成的帮助页面。

兴趣点

虽然ASP.NET MVC和Web API将NewtonSoft.Json用于JSON应用程序,但NewtonSoft.Json可以很好地处理由DataContractAttribute修饰的POCO类。

通过将dot替换为下划线并添加“Client”作为后缀,可以将CLR命名空间转换为TypeScript命名空间。例如,namespace My.Name.space将被翻译为My_Name_space_Client。

从某种角度来看,服务命名空间/函数名与客户端命名空间/函数名之间的一对一映射公开了服务的实现细节,这通常是不推荐的。但是,传统的RESTful客户端编程要求程序员注意服务功能的URL查询模板,并且查询模板包含服务的实现细节。因此,这两种方法都会在某种程度上公开服务的实现细节,但会带来不同的后果。

对于客户开发人员,经典的函数原型如下:

ReturnType DoSomething(Type1 t1, Type2 t2 ...)

是API函数,其余是传输的技术实现细节:TCP / IP,HTTP,SOAP,面向资源,基于CRUD的URI,RESTful,XML和JSON等。函数原型和一段API文档应该足以调用API函数。客户开发人员至少在操作成功时就不必关心传输的那些实现细节。仅当出现错误时,开发人员才需要关心技术细节。例如,在基于SOAP的Web服务中,您必须了解SOAP错误。在RESTful Web服务中,您可能必须处理HTTP状态代码和响应。

而且查询模板几乎没有提供API函数的语义含义。相比之下,WebApiClientGen以服务端函数命名客户端函数,就像WCF中的SvcUtil.exe默认情况下所做一样,因此,只要服务开发人员以良好的语义名称命名服务函数,生成的客户端函数就具有良好的语义。

在涵盖服务开发和客户端开发的SDLC全景图中,服务开发人员具有服务函数的语义含义,通常在功能描述之后命名函数是一种良好的编程习惯。面向资源的CRUD可能具有语义含义,或者仅仅是功能描述的技术翻译。

WebApiClientGen将Web API的文档注释复制到生成的TypeScript代码中的JsDoc3注释中,因此您几乎不需要阅读MVC生成的帮助页面,并且使用该服务的客户端编程将变得更加无缝。

许多JavaScript框架(如React和Vue.js)没有内置的HTTP请求库,而是依赖于第3方库(如Axios)。由于Axios显然是近年来在JavaScript程序员中最受欢迎的一个,由Reavy和Vuu.js推荐,因此支持Axios可能更为可行。

提示

对于持续集成,编写脚本以完全自动化某些步骤并不难。您可以在以下位置找到示例

  1. WebApiClientGen
  2. WebApiClientGen示例
  3. .NET Core演示

并在根文件夹中找到那些“Create * ClientApi.ps1”文件。

生成用于ASP.NET Web API的TypeScript客户端API相关推荐

  1. 生成用于ASP.NET Web API的C#客户端API

    目录 介绍 主要特征 主要好处 背景 推定(Presumptions) 使用代码 步骤0:将NuGet软件包WebApiClientGen安装到Web MVC/API项目 步骤1:建立.NET Cli ...

  2. api 原生hbase_HBase客户端API

    文章来源:加米谷大数据 本文介绍用于对HBase表上执行CRUD操作的HBase Java客户端API. HBase是用Java编写的,并具有Java原生API.因此,它提供了编程访问数据操纵语言(D ...

  3. sqlserv已生成用于更新的结果集。_ML.NET API 和工具八月更新

    ML.NET是一个开源的跨平台机器学习框架,适合 .NET 开发人员.它允许将机器学习集成到 .NET 应用中,而无需离开 .NET 生态系统.ML.NET工具(Visual Studio 中的模型生 ...

  4. ASP.NET Web API 安全筛选器

    原文:https://msdn.microsoft.com/zh-cn/magazine/dn781361.aspx 身份验证和授权是应用程序安全的基础.身份验证通过验证提供的凭据来确定用户身份,而授 ...

  5. asp.net web services

    现在Internet正在不断地发展着,在互联网应用刚开始的时候,我们浏览的网页只是静态的,不可交互的.而现在随着技术的日益发展,将提供给网页浏览者一个可编程的Web 站点.这些站点将在组织.应用.服务 ...

  6. sqoop2 java api实现_Sqoop2 Java客户端API指南

    原文连接:http://sqoop.apache.org/docs/1.99.6/ClientAPI.html Sqoop Java客户端API指南 这篇文章秒描述了额如何在外部应用中使用sqoop ...

  7. ASP.NET Web API 使用Swagger生成在线帮助测试文档

    ASP.NET Web API 使用Swagger生成在线帮助测试文档 Swagger-UI简单而一目了然.它能够纯碎的基于html+javascript实现,只要稍微整合一下便能成为方便的API在线 ...

  8. 【转】ASP.NET Web API 使用Swagger生成在线帮助测试文档,支持多个GET

    以下为教程: 在现有webapi项目中,nuget安装以下两个插件 swagger.net.ui swashbuckle 安装完毕后可以卸载Swagger.NET,此处不需要! 安装完毕后屏蔽以下代码 ...

  9. WCF 和 ASP.NET Web API

    地址:https://docs.microsoft.com/zh-cn/dotnet/framework/wcf/wcf-and-aspnet-web-api WCF 是 Microsoft 为生成面 ...

最新文章

  1. asp.net 学习的一些地址
  2. 【错误记录】Windows 控制台程序编译报错 ( WINDOWS.H already included. MFC apps must not #include <Windows.h> )
  3. 免费图标字体:一套圣诞节相关的图标字体
  4. 刘宇凡:自媒体不是自媒体 应是志媒体
  5. Scala 数据类型列表
  6. mybatis 缓存总结以及遇到的问题
  7. 微软借Bletchley项目将云计算信息加入区块链
  8. java中gettext方法_深入理解Java中方法的参数传递机制
  9. centos7 修改时区
  10. Groupon的电子邮件营销故事
  11. mysql分库分表 mycat_你们要的MyCat实现MySQL分库分表来了
  12. 开始刷题--《C语言经典100题》
  13. AutoCAD选择对象后触发事件,加载和卸载
  14. SVO (1)跑数据集
  15. Armbian : sudo must be owned by uid 0 and have the setuid bit set错误处理
  16. 游戏开发中常用的数学知识---矩阵(一)
  17. 常用的第三方模块-Pillow
  18. 第三人称计算机获奖感言,玄彬获奖感言感谢女友孙艺珍 惹众网友羡慕
  19. framebuffer之overview/双缓冲/alpha与colorkey/窗口平移与virtual screen平移
  20. 24505 Problem A 例题1-1-1 按要求输出信息(1)

热门文章

  1. 网络存储空间_网络存储服务器的三大分类,你都清楚吗?
  2. if else if语句格式_Python_if 语句
  3. python输入二维数组_python 二维数组键盘输入
  4. 优秀PSD电商促销BANNER模板|垂直化内容电商页面设计,需要注意哪些问题?
  5. REDM库使用教程01(详细入门)
  6. FeatureLayer.FeatureClass.Feature --以及图层最容易理解的讲解;如有巧合,一定是别人抄袭(Arcgis辅助理解)
  7. Kickstart的配置
  8. 三大公有云托管 Kubernetes 服务 (EKS、GKE、AKS) 评估
  9. Linux 中断所有知识点
  10. C和汇编如何互相调用?