码迷,mamicode.com
首页 >  
搜索关键字:get    ( 75501个结果
[AWS DA] API Gateway: Mapping Templates
What does it means? For example, if we have setup a API Gateway, REST API, GET method point to a Lambda function with no proxy intergration which retu ...
分类:移动开发   时间:2021-06-02 19:55:41    阅读次数:0
python 装饰器 log
定义logger方法: import loggingimport osimport timeimport utilsdata=time.strftime("%Y-%m-%d-%H:%M:%S")logging.basicConfig(filename=utils.get_project_path() ...
分类:编程语言   时间:2021-06-02 19:50:48    阅读次数:0
java获取访问IP方法
HttpServletRequest httpServletRequest = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()).getRequest(); log.info(" "); log. ...
分类:编程语言   时间:2021-06-02 19:49:05    阅读次数:0
每日日报
排错过程: ① FATAL EXCEPTION: main 致命异常 ②找到 caused by 类型转换异常 **** cannot be cast to ***** 一种类型不能被转换成另一种类型 Caused by: java.lang.ClassCastException: android. ...
分类:其他好文   时间:2021-06-02 19:45:14    阅读次数:0
Java实现HTTP GET 通过 Body 来发送数据
在开发过程中和第三方系统对接时遇到需要使用GET请求传递JSON参数,现整理请求方式如下。 重写HttpGetWithEntity类 1 public class HttpGetWithEntity extends HttpEntityEnclosingRequestBase { 2 public ...
分类:编程语言   时间:2021-06-02 19:32:23    阅读次数:0
按下葫芦起了瓢
bug一个接一个 if (changeElementValueButton==nullptr) { changeElementValueButton = new QPushButton; changeElementValueButton->setMaximumWidth(22); changeEle ...
分类:其他好文   时间:2021-06-02 19:25:33    阅读次数:0
C语言:n++ , ++n,n--,--n
#include <stdio.h> int main() { int a=3,x; x=(a++)+(++a)+(++a); // 3(4) 5(5) 6(6) printf("%d,%d\n",a,x); x=(a--)+(--a)+(--a); //6(5) 4(4) 3(3) printf( ...
分类:编程语言   时间:2021-06-02 18:48:00    阅读次数:0
flask项目构造
项目构造 在flask项目中,一切功能围绕核心app来完成,这个包就用来构造核心app 在项目中创建一个名为app的python包 settings.py 文件作为项目的配置文件 extensions.py 项目的第三方扩展插件 __init__.py 定义工厂函数,生成核心app 在项目的顶级目录 ...
分类:其他好文   时间:2021-06-02 18:46:20    阅读次数:0
logging
import logging module_name = os.path.basename(__file__) logger = logging.getLogger(module_name)#返回一个logger对象,如果没有指定名字将返回root logger logger.setLevel(le ...
分类:其他好文   时间:2021-06-02 18:26:20    阅读次数:0
redis那些数据类型?分别在那些场景使用
(1)string 这是最基本的类型了,没啥可说的,就是普通的set和get,做简单的kv缓存 例子:常规计数:微博数,粉丝数等 (2)hash 这个是类似map的一种结构,这个一般就是可以将结构化的数据,比如一个对象(前提是这个对象没嵌套其他的对象)给缓存在redis里,然后每次读写缓存的时候,可 ...
分类:其他好文   时间:2021-06-02 18:16:17    阅读次数:0
75501条   上一页 1 ... 28 29 30 31 32 ... 7551 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!