05 2019 档案

摘要:参考:https://www.cnblogs.com/melody210218/p/7120559.html 阅读全文
posted @ 2019-05-19 21:55 Samuel-Leung 阅读(172) 评论(0) 推荐(0) 编辑
摘要:1 二分查找: 快速排序:参考 https://www.cnblogs.com/coderising/p/5708801.html 堆排序:https://www.cnblogs.com/chengxiao/p/6129630.html 归并排序:https://www.cnblogs.com/ch 阅读全文
posted @ 2019-05-18 15:03 Samuel-Leung 阅读(134) 评论(0) 推荐(0) 编辑
摘要:参考:https://blog.csdn.net/qq_35321405/article/details/80270496 阅读全文
posted @ 2019-05-08 10:31 Samuel-Leung 阅读(470) 评论(0) 推荐(0) 编辑
摘要:二: django中 views from django.template.context import RequestContext # Create your views here. def test(request): if request.method == 'POST': print re 阅读全文
posted @ 2019-05-06 11:14 Samuel-Leung 阅读(210) 评论(0) 推荐(0) 编辑
摘要:views中 USER_DICT = { '1': {'name': 'root1', 'email': 'root@live.com'}, '2': {'name': 'root2', 'email': 'root@live.com'}, '3': {'name': 'root3', 'email 阅读全文
posted @ 2019-05-05 14:54 Samuel-Leung 阅读(447) 评论(0) 推荐(0) 编辑
摘要:FBV urls: urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^home/', views.home),] views: def home(request): return render(request, 'home.html') 阅读全文
posted @ 2019-05-05 14:10 Samuel-Leung 阅读(406) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2019-05-05 13:54 Samuel-Leung 阅读(7) 评论(0) 推荐(0) 编辑
摘要:html views 参考:http://www.cnblogs.com/wupeiqi/articles/5702910.html 阅读全文
posted @ 2019-05-05 13:48 Samuel-Leung 阅读(2031) 评论(0) 推荐(0) 编辑
摘要:tortoisegit:https://download.tortoisegit.org/tgit/ 中文包: https://tortoisegit.org/download/ git:https://www.cnblogs.com/xuanwotianming153/p/8504762.html 阅读全文
posted @ 2019-05-05 08:46 Samuel-Leung 阅读(204) 评论(0) 推荐(0) 编辑
摘要:参考:https://blog.csdn.net/wang__junhappy/article/details/80315798 阅读全文
posted @ 2019-05-04 18:39 Samuel-Leung 阅读(271) 评论(0) 推荐(0) 编辑
摘要:参考:https://www.cnblogs.com/mmzuo-798/p/7264093.html 阅读全文
posted @ 2019-05-04 18:23 Samuel-Leung 阅读(134) 评论(0) 推荐(0) 编辑
摘要:1 java的作用域以代码块为作用域 也就是{} 2 python中是以函数作为作用域:比如 def func(): if 1==1: name="a" print(name) func() 不会报错 因为Python是以函数作为作用域 3 js和Python一样是以函数作为作用域的 ps:(1) 阅读全文
posted @ 2019-05-04 17:09 Samuel-Leung 阅读(207) 评论(0) 推荐(0) 编辑
摘要:参考:https://www.cnblogs.com/nxl0908/p/7245460.html 阅读全文
posted @ 2019-05-04 14:20 Samuel-Leung 阅读(80) 评论(0) 推荐(0) 编辑
摘要:参考:http://www.cnblogs.com/wupeiqi/articles/5713330.html 阅读全文
posted @ 2019-05-04 13:02 Samuel-Leung 阅读(176) 评论(0) 推荐(0) 编辑
摘要:mysql的if函数,例如:IF(expr1,expr2,expr3) 说明:如果 expr1是TRUE,则IF()的返回值为expr2; 否则返回值则为expr3实例场景:如果video_id为null,则直接返回空字符,避免不必要的查询影响效率:(SELECT if(isnull(video_i 阅读全文
posted @ 2019-05-03 19:47 Samuel-Leung 阅读(4773) 评论(0) 推荐(1) 编辑
摘要:参考一 :http://www.cnblogs.com/wupeiqi/articles/5713315.html 参考二:http://www.cnblogs.com/wupeiqi/articles/5713323.html 阅读全文
posted @ 2019-05-03 18:22 Samuel-Leung 阅读(133) 评论(0) 推荐(0) 编辑
摘要:参考:https://www.cnblogs.com/koka24/p/5841826.html Redis 中文官网 http://www.redis.cn/ 使用教程 https://www.runoob.com/redis/redis-install.html redis基本操作文章: htt 阅读全文
posted @ 2019-05-03 16:31 Samuel-Leung 阅读(116) 评论(0) 推荐(0) 编辑
摘要:参考:https://www.cnblogs.com/alex3714/articles/5248247.html 提高:http://www.cnblogs.com/alex3714/articles/5876749.html selectors模块 https://www.cnblogs.com 阅读全文
posted @ 2019-05-03 13:57 Samuel-Leung 阅读(195) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示