上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
摘要: 参考:https://blog.csdn.net/m350058411/article/details/105456953 https://www.kancloud.cn/pshizhsysu/kubernetes/2055662 第一台master的整体脚本,脚本问题: 1. /etc/docke 阅读全文
posted @ 2021-06-17 20:04 大川哥 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 1、 实例9:输出非u开头的行内容,是匹配到u截止 命令: cat test.txt |grep ^[^u] 这个-o参数,是指输出匹配到的内容, ls | grep -o "^[^.]*" 5.使用实例: 说明: 实例3:从文件中读取关键词进行搜索 命令: cat test.txt | grep  阅读全文
posted @ 2021-06-16 17:34 大川哥 阅读(72) 评论(0) 推荐(0) 编辑
摘要: https://shimo.im/docs/pXwjwwdYyqK89q9p/read https://www.bilibili.com/read/cv10171290/ 附件里面有插件,我自己有 阅读全文
posted @ 2021-06-07 18:34 大川哥 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 前端资源准备好index.html和login.html 目录结构: urls.py设置: from django.views.generic import TemplateView urlpatterns = [ # path('admin/', admin.site.urls), path('a 阅读全文
posted @ 2021-05-27 17:21 大川哥 阅读(1930) 评论(0) 推荐(0) 编辑
摘要: 在admin.py中修改 from django.contrib import admin admin.site.site_title="慕学在线网管理后台" admin.site.site_header="慕学在线网管理后台" admin.site.index_title="慕学在线网管理后台" 阅读全文
posted @ 2021-05-26 17:38 大川哥 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 新建users的app startapp users 自定义user类,在users/models.py: from django.db import models from django.contrib.auth.models import AbstractUser # Create your m 阅读全文
posted @ 2021-05-11 11:34 大川哥 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 在Linux内核 2.6.16中引入了一个系统内存接口特性,这个接口位于/proc/$pid/目录下的smaps文件中 ,一看内容发现是进程内存映像信息,比同一目录下的maps文件更详细些。cat /proc/1/smaps 这里解释下samps里面的内容:bfdca000-bfddf000 是该虚 阅读全文
posted @ 2021-05-08 14:32 大川哥 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: import requests,pprint,time #代码调试,增删改查 # t=time.time() # print(t) # response = requests.get('http://localhost/api/mgr/customers?action=list_customer') 阅读全文
posted @ 2021-04-28 14:44 大川哥 阅读(60) 评论(0) 推荐(0) 编辑
摘要: def listmedicine(request): try: # .order_by('-id') 表示按照 id字段的值 倒序排列 # 这样可以保证最新的记录显示在最前面 qs = Medicine.objects.values().order_by('-id') # 查看是否有 关键字 搜索 阅读全文
posted @ 2021-04-28 14:36 大川哥 阅读(80) 评论(0) 推荐(0) 编辑
摘要: from django.http import JsonResponse from django.db.models import F from django.db import IntegrityError, transaction import traceback # 导入 Order 对象定义 阅读全文
posted @ 2021-04-28 14:31 大川哥 阅读(117) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页