会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Knock knock...
博客园
首页
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
13
下一页
2020年4月16日
MYSQL中的时间格式不能为0
摘要: 记一次BUGmysql
阅读全文
posted @ 2020-04-16 18:50 烧刘病
阅读(381)
评论(0)
推荐(0)
编辑
celery在Django中的使用
摘要: celery在Django中的使用 使用的项目目录 proj __init__.py setting.py celery.py urls.py wsgi.py myapp init.py tasks.py views.py model.py celery.py __init__.py tasks.p
阅读全文
posted @ 2020-04-16 09:44 烧刘病
阅读(217)
评论(2)
推荐(0)
编辑
2020年4月10日
django生产环境配置static
摘要: 1.首先setttings.py里面设置STATIC_ROOT = os.path.join(BASE_DIR,'collectstatic') 2.执行python manage.py collectstatic收集静态文件 3.在urls.py里面添加路由映射url(r'^static/(?P<
阅读全文
posted @ 2020-04-10 09:32 烧刘病
阅读(420)
评论(0)
推荐(0)
编辑
2020年4月8日
算法--排序
摘要: #堆排def sift(li, low, high): ''' :param li:树 :param low: 树的根节点 :param high: 树的最后一个节点 :return:向下调整树 ''' tmp = li[low] # 去除树根作为临时变量 i = low # i指向空位 j = 2
阅读全文
posted @ 2020-04-08 14:32 烧刘病
阅读(134)
评论(0)
推荐(0)
编辑
2020年4月2日
数据结构--链表
摘要: class Node: def __init__(self, data): self.data = data self.next = None def __repr__(self): return self.data class SingleLinkedList: def __init__(self
阅读全文
posted @ 2020-04-02 10:23 烧刘病
阅读(116)
评论(0)
推荐(0)
编辑
2020年1月20日
路飞学城项目
摘要: 1.先从前端Vue看起 vue router,进入到主页Home.vue vue roter Luffy Header Login Home my_order Course列表 acount结算 后端总结 Vue总结
阅读全文
posted @ 2020-01-20 10:02 烧刘病
阅读(144)
评论(0)
推荐(0)
编辑
2020年1月19日
Django1.11.20+IIS8.5部署
摘要: 1.可运行的Django网站 在cmd中输入python manage.py runserver 0.0.0.0:9999本地运行成功 2.安装配置IIS 3.python安装wfastcgi模块 pip install wfastcgi(其实就是一个py文件) 4.项目文件处理 python的Li
阅读全文
posted @ 2020-01-19 12:14 烧刘病
阅读(263)
评论(0)
推荐(0)
编辑
2020年1月17日
vue+django配置
摘要: 1.写完Vue项目 修改src/router/index.js的Router对象 export default new Router({ mode: 'history', routes: [ { path: '/', name: 'Pos', component: Pos } ] }) //添加mo
阅读全文
posted @ 2020-01-17 10:37 烧刘病
阅读(1679)
评论(0)
推荐(1)
编辑
2019年12月24日
jExcel
摘要: //懒加载页面 $('.jexcel_content').scroll(function () { if ($('.jexcel_content').scrollTop() $('.jexcel').height() - $('.jexcel_content').height() + 2) { ta
阅读全文
posted @ 2019-12-24 15:23 烧刘病
阅读(652)
评论(0)
推荐(0)
编辑
2019年12月18日
drf Auth认证
摘要: 1
阅读全文
posted @ 2019-12-18 17:42 烧刘病
阅读(168)
评论(0)
推荐(0)
编辑
上一页
1
···
3
4
5
6
7
8
9
10
11
···
13
下一页
公告
回到页首