博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ABP 使用SwaggerUI汉化
阅读量:4709 次
发布时间:2019-06-10

本文共 4023 字,大约阅读时间需要 13 分钟。

 

 

配置SweaggerUI

1         private void ConfigureSwaggerUi() 2         { 3             Configuration.Modules.AbpWebApi().HttpConfiguration 4                 .EnableSwagger(c => 5                 { 6                     c.SingleApiVersion("v1", "Demo.WebApi"); 7                     c.IncludeXmlComments(string.Format(@"{0}\bin\{1}.XML", System.AppDomain.CurrentDomain.BaseDirectory, typeof(DemoApplicationModule).Assembly.GetName().Name)); 8                     c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First()); 9                 })10                 .EnableSwaggerUi(c => {11                     c.InjectJavaScript(Assembly.GetExecutingAssembly(), "Demo.WebApi.Swagger.translator.js");12                 });13         }

 

汉化文件

1 'use strict'; 2  3 /** 4  * Translator for documentation pages. 5  * 6  * To enable translation you should include one of language-files in your index.html 7  * after . 8  * For example -  9  *10  * If you wish to translate some new texsts you should do two things:11  * 1. Add a new phrase pair ("New Phrase": "New Translation") into your language file (for example lang/ru.js). It will be great if you add it in other language files too.12  * 2. Mark that text it templates this way 
New Phrase
or
.13 * The main thing here is attribute data-sw-translate. Only inner html, title-attribute and value-attribute are going to translate.14 *15 */16 window.SwaggerTranslator = {17 _words: [],18 19 translate: function () {20 var $this = this;21 $('[data-sw-translate]').each(function () {22 $(this).html($this._tryTranslate($(this).html()));23 $(this).val($this._tryTranslate($(this).val()));24 $(this).attr('title', $this._tryTranslate($(this).attr('title')));25 });26 },27 28 _tryTranslate: function (word) {29 return this._words[$.trim(word)] !== undefined ? this._words[$.trim(word)] : word;30 },31 32 learn: function (wordsMap) {33 this._words = wordsMap;34 }35 };36 37 38 /* jshint quotmark: double */39 window.SwaggerTranslator.learn({40 "Warning: Deprecated": "警告:已过时",41 "Implementation Notes": "实现备注",42 "Response Class": "响应类",43 "Status": "状态",44 "Parameters": "参数",45 "Parameter": "参数",46 "Value": "值",47 "Description": "描述",48 "Parameter Type": "参数类型",49 "Data Type": "数据类型",50 "Response Messages": "响应消息",51 "HTTP Status Code": "HTTP状态码",52 "Reason": "原因",53 "Response Model": "响应模型",54 "Request URL": "请求URL",55 "Response Body": "响应体",56 "Response Code": "响应码",57 "Response Headers": "响应头",58 "Hide Response": "隐藏响应",59 "Headers": "头",60 "Try it out!": "试一下!",61 "Show/Hide": "显示/隐藏",62 "List Operations": "显示操作",63 "Expand Operations": "展开操作",64 "Raw": "原始",65 "can't parse JSON. Raw result": "无法解析JSON. 原始结果",66 "Model Schema": "模型架构",67 "Model": "模型",68 "apply": "应用",69 "Username": "用户名",70 "Password": "密码",71 "Terms of service": "服务条款",72 "Created by": "创建者",73 "See more at": "查看更多:",74 "Contact the developer": "联系开发者",75 "api version": "api版本",76 "Response Content Type": "响应Content Type",77 "fetching resource": "正在获取资源",78 "fetching resource list": "正在获取资源列表",79 "Explore": "浏览",80 "Show Swagger Petstore Example Apis": "显示 Swagger Petstore 示例 Apis",81 "Can't read from server. It may not have the appropriate access-control-origin settings.": "无法从服务器读取。可能没有正确设置access-control-origin。",82 "Please specify the protocol for": "请指定协议:",83 "Can't read swagger JSON from": "无法读取swagger JSON于",84 "Finished Loading Resource Information. Rendering Swagger UI": "已加载资源信息。正在渲染Swagger UI",85 "Unable to read api": "无法读取api",86 "from path": "从路径",87 "server returned": "服务器返回"88 });89 90 91 $(function () {92 window.SwaggerTranslator.translate();93 });

 配置好上面那些之后在web api初始化的时候调用

 

显示效果

 

转载于:https://www.cnblogs.com/yy690486439/p/5557333.html

你可能感兴趣的文章
约束和异常处理
查看>>
css 布局
查看>>
RESTful风格化
查看>>
C# 多线程学习系列二
查看>>
如何将你的github仓库部署到github pages(转)
查看>>
几个重要的shell命令:diff patch tar find grep
查看>>
学习笔记
查看>>
JS ES6 -- let命令
查看>>
查找空座位问题
查看>>
几个简单规则改进你的SEO效果
查看>>
UVA10820 Send a Table
查看>>
主流css reset的讲解分析(转载)
查看>>
OpenCV4Android Tutorial0解析
查看>>
Oracle数据库(一)
查看>>
SVD与文本摘要
查看>>
HDU 5451 广义斐波那契数列
查看>>
mysql5.6配置文件my.ini位置
查看>>
[BZOJ4820][SDOI2017]硬币游戏(高斯消元+KMP)
查看>>
构造矩阵解决这个问题 【nyoj299 Matrix Power Series】
查看>>
记点笔记
查看>>