码迷,mamicode.com
首页 >  
搜索关键字:models    ( 3511个结果
Django admin定制
modelsadmin属性: 点这里 models.admin方法: 点这里 ...
分类:其他好文   时间:2020-09-18 03:01:45    阅读次数:35
新基建下,智慧交通发展新规划:智慧隧道监控可视化系统
随着当代经济的发展,交通环境日益紧张,加上山区地区的交通运输的需求,隧道的交通建设开发方兴未艾。隧道交通的规划越来越完备,而对于隧道内监控管理维护却显得有些不足。而工业4.0的崛起,逐步进入了智能化的新时代,伴随着工业互联网的新兴力量,工控可视化系统应运而生,不仅能起到日常的监控管理维护,在发现事... ...
分类:其他好文   时间:2020-09-17 21:08:22    阅读次数:28
Nest.js —— A progressive Node.js framework
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
c# 身份证获取出生日期年龄和性别
if (Identification.Length == 18)//处理18位的身份证号码从号码中得到生日和性别代码 { string age = Identification.Substring(6, 4) + "-" + Identification.Substring(10, 2) + "-" ...
分类:Windows程序   时间:2020-09-17 17:11:56    阅读次数:48
4.基本权限验证之动态生成一级菜单
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
Django基础7--模板系统
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
Django基础-002 Models的属性与字段
1.models字段类型 AutoField():一个IntegerField,根据可用ID自动递增。如果没指定主键,就创建它自动设置为主键。 IntegerField():一个整数; FloatField:浮点型 CharField(max_length = 20):字符串字段,字段最大长度为20 ...
分类:其他好文   时间:2020-08-31 11:52:45    阅读次数:47
django 应用各个py文件代码
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
drf权限组件
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
Gensim的model使用word2vec 示例
# 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
3511条   上一页 1 ... 6 7 8 9 10 ... 352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!