摘要:
第一种方法:获取在线图片的宽 高信息 from io import StringIO,BytesIO from pil import Image from urllib import request url = 'http://e.hiphotos.baidu.com/image/h%3D300/s 阅读全文
摘要:
1、我新建了一个django项目,然后又在git上新建了一个仓库,然后我在django的项目文件内,将git上的项目clone到这个文件内的时候 git clone https://gitee.com/One-Tom/RMBS.git 的时候提示我 fatal: destination path ' 阅读全文
摘要:
unique_together解释 nique_together 这个元数据是非常重要的一个!它等同于数据库的联合约束! 举个例子,假设有一张用户表,保存有用户的姓名、出生日期、性别和籍贯等等信息。要求是所有的用户唯一不重复,可现在有好几个叫“张伟”的,如何区别它们呢?(不要和我说主键唯一,这里讨论 阅读全文
摘要:
model.py from django.db import models # Create your models here. class Book(models.Model): nid = models.AutoField(primary_key=True) title = models.Cha 阅读全文
摘要:
一次在使用orm进行联表查询的时候,出现 Python int too large to convert to C long 的问题: 在分析错误之后,在错误最后面提示中有: File "F:\python\python3.6\lib\sqlite3\dbapi2.py", line 64, in 阅读全文
摘要:
基于二级分发设计url路由 path('index/', views.index), path('index/', ([ path('test01/', test01), path('test02/', test02), ], None, None)), # 二级分发 path('index/', 阅读全文
摘要:
执行自定义SQL语言: from django.db import connection cursor=connection.cursor() # 插入操作 cursor.execute("insert into hello_author(name) values('传说中的申小五')") 阅读全文
摘要:
01、目录展示 02、url.py urlpatterns = [ path('admin/', admin.site.urls), path('login/',views.login), path('pc-geetest/register/',views.pcgetcaptcha), path(' 阅读全文
摘要:
# 批量创建数据 # Create your views here. from django.db import models from django.shortcuts import HttpResponse from .models import Book import random def i 阅读全文