12 2017 档案

摘要:Bookmarks Bookmarks 书签栏 redis Try RedisRedisRedis应用2-Redis实现开发者头条页面点赞功能 - noaman_wgs的博客 - CSDN博客windows安装redisRedis Lrange 命令_获取列表指定范围内的元素Google使用 Red 阅读全文
posted @ 2017-12-28 17:41 liuzhipenglove 编辑
摘要:""" 在web开发中, 你可能会遇到下面这种场景: 在用户完成某个操作后, 自动去执行一些后续的操作. 譬如用户完成修改密码后,你要发送一份确认邮件 观察者模式:观察者模式(Observer)完美的将观察者和被观察的对象分离开。 举个例子,用户界面可以作为一个观察者,业务数据是被观察者, 用户界面 阅读全文
posted @ 2017-12-21 11:13 liuzhipenglove 编辑
摘要:Bookmarks Bookmarks 书签栏 redis Try RedisRedisRedis应用2-Redis实现开发者头条页面点赞功能 - noaman_wgs的博客 - CSDN博客windows安装redisRedis Lrange 命令_获取列表指定范围内的元素Google pytho 阅读全文
posted @ 2017-12-19 09:36 liuzhipenglove 编辑
摘要:https://github.com/gildas-lormeau/JSONView-for-Chrome https://www.cnblogs.com/androidstudy/p 阅读全文
posted @ 2017-12-17 20:55 liuzhipenglove 编辑
摘要:#1 连接redis #1 连接redis -- import redis -- 使用端口连接redis conn = redis.Redis(host="127.0.0.1", port=6379) -- 使用套接字连接 r = redis.Redis(unix_socket_path='/tmp 阅读全文
posted @ 2017-12-14 17:20 liuzhipenglove 编辑
摘要:# redis安装 # redis安装教程 -- 服务器(ubuntu)安装redis服务 sudo apt-get install redis-server -- 源码安装 -- $ wget http://download.redis.io/releases/redis-4.0.6.tar.gz 阅读全文
posted @ 2017-12-13 17:59 liuzhipenglove 编辑
摘要:https://www.douban.com/group/topic/44329052/ 阅读全文
posted @ 2017-12-12 18:59 liuzhipenglove 编辑
摘要:#教程 # ubuntu部署django项目 # 部署准备 - ubuntu操作系统 -- vagrant虚拟 - Nginx服务器 -- 安装在ubuntu的web服务器 - uWSGI应用协议服务模块 -- python的uwsgi模块 - python虚拟环境 -- virtualenv - 阅读全文
posted @ 2017-12-10 23:15 liuzhipenglove 编辑
摘要:# 安装教程 # 安装vagrant 教程 # 准备 - windows操作系统 - VirtualBox-5.1.18-114002-Win, - vagrant_1.9.3.msi - 镜像文件https://atlas.hashicorp.com/ubuntu/boxes/trusty64/v 阅读全文
posted @ 2017-12-10 11:40 liuzhipenglove 编辑
摘要:# 点击更新验证码,只要重新在发送一个请求即可 function updateCode(ths) { ths.src = ths.src + '?' } /check_code/ 和/check_code/? 在匹配url的时候都是匹配到/check_code/的 阅读全文
posted @ 2017-12-09 17:15 liuzhipenglove 编辑
摘要:form后台生成form里面的Input标签,以及设置Input的属性 # 需求 后台生成form里面的input标签,并设置input标签的属性, class RegisterForm(Form): email = fields.EmailField() password = fields.Cha 阅读全文
posted @ 2017-12-09 17:14 liuzhipenglove 编辑
摘要:后台生成随机验证码 #验证码生成 - 在login.html 中有一张验证码图片 设置图片的src url, 相当于发送一次get请求,返回的内容为图片渲染的内容 <div class="col-sm-5"> <input type="password" class="form-control" i 阅读全文
posted @ 2017-12-09 17:03 liuzhipenglove 编辑
摘要:http://www.django-rest-framework.org/api-guide/pagination/ https://stackoverflow.com/questions/31785966/django-rest-framework-turn-on-pagination-on-a- 阅读全文
posted @ 2017-12-07 11:53 liuzhipenglove 编辑
摘要:# rest-framework教程 - settings.py INSTALL-APPS = [ 'snippets', # app 'rest-framework', ] - 创建model # -*- coding: utf-8 -*- from __future__ import unico 阅读全文
posted @ 2017-12-05 17:34 liuzhipenglove 编辑
摘要:# 备份数据库 - 简单备份 mysqldump -uroot -pec494904 ecmangent-mobile > /tmp/backfile.sql 表结构+数据 - --opt mysqldump -uroot -pec494904 --opt ecmangent-mobile > /t 阅读全文
posted @ 2017-12-05 14:27 liuzhipenglove 编辑
摘要:http://blog.csdn.net/maerdym/article/details/46380309 http://blog.csdn.net/jiang1013nan/article/details/22651439 http://blog.csdn.net/gnicky/article/d 阅读全文
posted @ 2017-12-05 10:27 liuzhipenglove 编辑
摘要:https://docs.djangoproject.com/en/2.0/topics/auth/customizing/#extending-the-existing-user-model # 另外 https://zhuanlan.zhihu.com/p/26188198 阅读全文
posted @ 2017-12-04 15:10 liuzhipenglove 编辑
摘要:day6-17-1204 # 增加远程访问mysql的权限(就是其他ip地址远程访问另外一个ip地址的数据库) -- step1 修改配置文件,bind_address, 允许所有ip地址都可以访问mysql(生成环境不允许这么做) vim /etc/mysql/mysql.conf.d/mysql 阅读全文
posted @ 2017-12-04 11:17 liuzhipenglove 编辑