04 2016 档案
摘要:bbs网站 models #!/usr/bin/env python #_*_coding:utf-8_*_ from django.db import models from django.contrib.auth.models import User # Create your models h
阅读全文
摘要:from __future__ import unicode_literals from django.db import models from django.contrib.auth.models import User # Create your models here. class Host(models.Model): hostname=models.CharField(m...
阅读全文
摘要:from __future__ import unicode_literals from django.contrib.auth.models import User from django.db import models # Create your models here. class Host(models.Model): hostame = models.CharField(...
阅读全文
摘要:Ajax例子,views返回,html接收数据 views ajax.html
阅读全文
摘要:STATIC_URL = '/static/'STATICFILES_DIRS = ( os.path.join(BASE_DIR,'static')) DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME':'
阅读全文
摘要:【转】Django 一对多,多对多关系解析 Django 的 ORM 有多种关系:一对一,多对一,多对多。 各自定义的方式为 : 一对一: OneToOneField 多对一: ForeignKey 多对多: ManyToManyField 上边的描述太过数据而缺乏人性化,我们来更人性化一些: 多个
阅读全文
摘要:经典的例子:一本书有多个作者,一个作者有多本书,典型的多对多关系。 设计模型如下: 访问多值: 一本书的所有作者: b = Book.objects.get(id=50) b.authors.all() b.authors.filter(first_name='Adam') 反向也可以,一个作者的所
阅读全文
摘要:django settings.py urls.py passpor document models.py vim paramiko_modle.py urls.py views.py templates index.html login.html
阅读全文
摘要:django 分页显示页码 views.py html_helper.py
阅读全文
摘要:django 分页,urls views html,index.html modles.py
阅读全文