[TOC] 一. 项目准备 01 需求 02 数据库脚本 03 项目结构 04 Maven依赖 pom.xml文件中添加依赖 二.Java源代码 01 domain 实体类 Account 实体类 02 dao 持久层 IAccountDao接口 03 Service 服务层 IAccountSer ...
分类:
其他好文 时间:
2020-02-26 23:10:10
阅读次数:
76
数据更新操作,对单条记录,可以使用save或者是update两种方式。 save() 默认保存后会看到sql语句中更新了所有字段,而save的值是之前获取时候的字段值,是缓存下来的,并不一定最新,可能中途其他地方被更新过(在Django工程下的settings.py下将log设置为DEBUG,即可查 ...
分类:
其他好文 时间:
2020-02-26 18:51:06
阅读次数:
61
两个目录的区别: 工程目录是指包含manage.py文件的目录 配置目录是批包含settings.py文件的目录 在配置目录中找到并打工settings.py文件,做以下配置: 01 DEBUG DEBUG=True:用于开发环境 DEBUG=False:用于生产环境 02 ALLOWED_HOST ...
分类:
其他好文 时间:
2020-02-26 17:14:57
阅读次数:
75
采用以下简单的源代码(将其命名为test.cpp): #include <windows.h> void main() { DebugBreak(); } 使用以下命令编译并链接: cl /MD /c test.cpp link /debug test.obj 如果TEST.EXE现在运行(在64位 ...
分类:
其他好文 时间:
2020-02-26 14:00:37
阅读次数:
79
import timefrom PIL import ImageGrabimport numpy as npimport cv2 beg = time.time()debug = False# img = ImageGrab.grab(bbox=(250, 161, 1141, 610))img = ...
分类:
其他好文 时间:
2020-02-26 01:25:09
阅读次数:
92
1 // Definition for a binary tree node. 2 // #[derive(Debug, PartialEq, Eq)] 3 // pub struct TreeNode { 4 // pub val: i32, 5 // pub left: Option<Rc<Re ...
分类:
其他好文 时间:
2020-02-26 01:06:15
阅读次数:
100
情景: 开发了一个http模块,挂在conten-phase阶段, static char * ngx_http_ivms(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) { ngx_http_core_loc_conf_t *clcf; clcf = ...
分类:
Web程序 时间:
2020-02-25 19:37:26
阅读次数:
99
Django2.2 报错信息无法正常在页面显示 Django2.2 安装后,使用runserver进行开发,出错时错误信息只显示于控制台命令行,而在前端页面只显示一行 A server error occurred. Please contact the administrator. 排错很不方便, ...
分类:
其他好文 时间:
2020-02-25 18:28:23
阅读次数:
67
记录一下入手Flutter后实际开发中踩过的一些坑,这些坑希望后来者踩的越少越好。本文章默认读者已经掌握Flutter初步开发基础。 坑1问题:在debug模式下,App启动第一个页面会很慢,甚至是黑屏。解决:请切换到release模式,或者使用flutter build apk 打出来的relea ...
分类:
其他好文 时间:
2020-02-25 17:39:07
阅读次数:
100
公众号登录地址:https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index 微信接口调试地址:https://mp.weixin.qq.com/debug/cgi-bin/apiinfo 公众号 ...
分类:
微信 时间:
2020-02-25 14:36:54
阅读次数:
146