上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 31 下一页
摘要: 作为一个程序员其实都在使用git 但是对于大多数人而言 可能也就是会部分 下面是常用的Git命令 $ git init $ git add . $ git commit -m 'first commit' $ git remote add origin https://gitee.com/..... 阅读全文
posted @ 2020-04-01 11:45 流年中渲染了微笑 阅读(186) 评论(0) 推荐(0)
摘要: 第一步 我们先设计表 有大课和小课 他们的价格各不相同 第一次设计 第二次设计 第三次设计 注:表记录那张表 由contenttype组件实现 上面傻种都是可以 但是我们今天主要看的是第三种 # content type 表不需要你自己生成 在你建表的时候 django会自动给你生成from dja 阅读全文
posted @ 2020-03-30 11:10 流年中渲染了微笑 阅读(131) 评论(0) 推荐(0)
摘要: related_name/related_query_name 一般出现在有 Foreignkey 或者 Manytomang 字段的时候 一 一般查询 class Department(models.Model): title = models.CharField(verbose_name='部门 阅读全文
posted @ 2020-03-29 22:43 流年中渲染了微笑 阅读(1484) 评论(0) 推荐(1)
摘要: # 这是django下的一张表 from django.db import models class Auction(models.Model): # cover = models.CharField(verbose_name='封面', max_length=128,null=True, blan 阅读全文
posted @ 2020-03-29 22:29 流年中渲染了微笑 阅读(1680) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-03-28 21:00 流年中渲染了微笑 阅读(149) 评论(0) 推荐(0)
摘要: {# multiple多选 #} <div class="btn btn-primary btn-xs upload" style="position: relative"> <div><i class="fa fa-upload" aria-hidden="true"></i> 上传文件</div 阅读全文
posted @ 2020-03-27 22:46 流年中渲染了微笑 阅读(335) 评论(0) 推荐(0)
摘要: 要实现类似下面的 一般情况是 先在后端实现 再在前端渲染 后端 parent_object = models.FileRepository.objects.filter( id=int(folder_id), file_type=2, project=request.tracer.project). 阅读全文
posted @ 2020-03-27 21:31 流年中渲染了微笑 阅读(1063) 评论(0) 推荐(0)
摘要: 我们之前在小程序处也有讲解过 地址 网址 1. 安装 pip install -U cos-python-sdk-v5 2.初始化 下面的代码 我们需要提供 secret_id secret_key region # APPID 已在配置中移除,请在参数 Bucket 中带上 APPID。Bucke 阅读全文
posted @ 2020-03-26 20:35 流年中渲染了微笑 阅读(1730) 评论(0) 推荐(0)
摘要: mdeditor 如果在项目中使用markdown编辑器分以下几步 添加和编辑的页面中 textare 输入框 > 转换为markdown编辑器 - 应用css- 应用js 例如 # 循环form表单 判断是不是生成的textare的标签 的字段<form method="post"> {% csr 阅读全文
posted @ 2020-03-26 16:54 流年中渲染了微笑 阅读(527) 评论(0) 推荐(0)
摘要: 有时候我们会遇见下面这个问题 TypeError: Object of type 'QuerySet' is not JSON serializable 原因是 def wiki_catalog(request, project_id): # 获取当前项目所有的目录: data = QuerySet 阅读全文
posted @ 2020-03-26 15:14 流年中渲染了微笑 阅读(3192) 评论(0) 推荐(2)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 31 下一页