modelsadmin属性: 点这里 models.admin方法: 点这里 ...
分类:
其他好文 时间:
2020-09-18 03:01:45
阅读次数:
35
随着当代经济的发展,交通环境日益紧张,加上山区地区的交通运输的需求,隧道的交通建设开发方兴未艾。隧道交通的规划越来越完备,而对于隧道内监控管理维护却显得有些不足。而工业4.0的崛起,逐步进入了智能化的新时代,伴随着工业互联网的新兴力量,工控可视化系统应运而生,不仅能起到日常的监控管理维护,在发现事... ...
分类:
其他好文 时间:
2020-09-17 21:08:22
阅读次数:
28
1.nest指令 nest <command> [options] Options: -h -v Commands: new|n [options] [name] build [options] [app] start [options] [app] generate|g [options] <sc ...
分类:
Web程序 时间:
2020-09-17 18:30:48
阅读次数:
44
if (Identification.Length == 18)//处理18位的身份证号码从号码中得到生日和性别代码 { string age = Identification.Substring(6, 4) + "-" + Identification.Substring(10, 2) + "-" ...
class Permission(models.Model): """ 权限表 """ title = models.CharField(verbose_name='标题', max_length=32) url = models.CharField(verbose_name='含正则的URL', ...
分类:
其他好文 时间:
2020-09-16 12:26:34
阅读次数:
32
1.使用模板系统 在之前的model.py文件中新增加Detail from django.db import models # Create your models here. class ProjectInfo(models.Model): """ 项目信息模型 """ project_name ...
分类:
其他好文 时间:
2020-09-10 22:55:59
阅读次数:
37
1.models字段类型 AutoField():一个IntegerField,根据可用ID自动递增。如果没指定主键,就创建它自动设置为主键。 IntegerField():一个整数; FloatField:浮点型 CharField(max_length = 20):字符串字段,字段最大长度为20 ...
分类:
其他好文 时间:
2020-08-31 11:52:45
阅读次数:
47
views.py from . import models # Create your views here. def welcome(request): s = '你好哇,李银河' return HttpResponse(s) def user_info(request): username = ...
分类:
其他好文 时间:
2020-08-27 13:02:58
阅读次数:
46
from app01 import models from rest_framework import exceptions from rest_framework.authentication import BaseAuthentication # 用drf的认证,写一个类 class Login ...
分类:
其他好文 时间:
2020-08-17 17:26:40
阅读次数:
63
# coding=utf-8 """ @ File: word2vec_gensim.py @Software: PyCharm @desc: """ from gensim.models import word2vec import logging logging.basicConfig(form ...
分类:
其他好文 时间:
2020-08-13 22:13:28
阅读次数:
66