Json 格式显示public static void Register(HttpConfiguration config) { //////////////设置不以xml格式返回 config.Formatters.Remove(config.Formatters.XmlFormatter); /... ...
分类:
Web程序 时间:
2018-06-26 14:28:58
阅读次数:
220
Given an array of strings, group anagrams together. Example: Note: All inputs will be in lowercase. The order of your output does not matter. 题目思路为利用c ...
分类:
其他好文 时间:
2018-06-21 11:38:36
阅读次数:
195
Configuring NGINX Plus as a Web Server At a high level, configuring NGINX Plus as a web server is a matter of defining which URLs it handles and how i ...
分类:
其他好文 时间:
2018-06-20 21:37:03
阅读次数:
139
import osimport logging.config # 定义三种日志输出格式 开始 standard_format = '[%(asctime)s][%(threadName)s:%(thread)d][task_id:%(name)s][%(filename)s:%(lineno)d]' ...
分类:
其他好文 时间:
2018-06-19 19:30:06
阅读次数:
150
lambda表达式是函数式编程中的匿名函数语法规范。 In computer programming, an anonymous function (function literal, lambda abstraction, or lambda expression) is a function d ...
分类:
其他好文 时间:
2018-06-05 19:12:35
阅读次数:
195
jqGrid: ColModel 指定table中的td。 如果数据有特殊处理可借用formatter: {name : 'approveStatus',index : 'APPROVE_STATUS', width:'80px',formatter:'select', formatter: cre ...
分类:
其他好文 时间:
2018-06-01 16:51:50
阅读次数:
203
Eclipse常用快捷键(转自博客园) 1几个最重要的快捷键 代码助手:Ctrl+Space(简体中文操作系统是Alt+/)快速修正:Ctrl+1单词补全:Alt+/打开外部Java文档:Shift+F2显示搜索对话框:Ctrl+H快速Outline:Ctrl+O打开资源:Ctrl+Shift+R打 ...
分类:
系统相关 时间:
2018-06-01 13:22:13
阅读次数:
231
最近修改了项目里的logging相关功能,用到了python标准库里的logging模块,在此做一些记录。主要是从官方文档和stackoverflow上查询到的一些内容。 官方文档 技术博客 基本用法 下面的代码展示了logging最基本的用法。 # -*- coding: utf-8 -*- im ...
分类:
编程语言 时间:
2018-05-26 12:58:32
阅读次数:
224
1 logging模块简介 logging模块是Python内置的标准模块,主要用于输出运行日志,可以设置输出日志的等级、日志保存路径、日志文件回滚等;相比print,具备如下优点: 可以通过设置不同的日志等级,在release版本中只输出重要信息,而不必显示大量的调试信息; print将所有信息都 ...
分类:
编程语言 时间:
2018-05-24 23:01:47
阅读次数:
325