question

Django快速开发之投票系统

孤人 提交于 2020-01-24 10:58:11
参考官网文档,创建投票系统。 ================ Windows 7/10 Python 3.6 Django 2.0* ================ 1、创建项目(mysite)与应用(polls ) D:\pydj>django-admin.py startproject mysite D:\pydj>cd mysite D:\pydj\mysite>python manage.py startapp polls 添加到setting.py # Application definition INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'polls', ) 最终哪个目录结构: 2、创建模型(即数据库)   一般web开发先设计数据库,数据库设计好了,项目就完了大半了,可见数据库的重要性。打开polls/models.py编写如下: # coding=utf-8 from django.db import models # Create your

MYSQL将查询结果创建表单

谁说我不能喝 提交于 2020-01-15 23:48:28
create table question_answer (SELECT question.BODY, answer.BODY FROM answer_interaction_question_info as question, answer_interaction_answer_info as answer where question.ID=answer.QUESTION_ID group by question.BODY) 来源: CSDN 作者: VCDI 链接: https://blog.csdn.net/qq_27011361/article/details/103996396

Python __str__(self)和__unicode__(self)

让人想犯罪 __ 提交于 2020-01-02 04:58:14
object. __str__ ( self ) 通过内嵌方法str()调用,并通过print语句计算对象的“非正式”字符串表示。这跟__repr__()的区别在于,它不需要是一个合法的Python表达式:可以用一种更便捷或简明的表现方式。返回类型必须是一个string对象。 object. __unicode__ ( self ) 实现unicode()内嵌函数;应该返回Unicode对象。当没有定义这个方法时,取而代之的是string转换,转换的结果是用系统默认编码转化为Unicode。 具体到Django中,在 Models中定义这个 __unicode__ (python3为 __str__ )方法与否,最直接的感受就是你访问admin所看到的内容是否友好。 1 2 3 4 5 6 7 8 9 10 11 class Question(models.Model): question_text = models.CharField( 'question text' , max_length = 200 ) pub_date = models.DateTimeField( 'date published' ) class Meta: verbose_name = 'question' verbose_name_plural = verbose_name ordering = [

Loading Different DataTemplate for each item in ListBox

匿名 (未验证) 提交于 2019-12-03 01:01:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am trying to create a learn application and I would like to load data template for based on Question type as explained below. If Question Type is TYPE1 load InstructionTemplate_Type1.xaml load ChoiceTemplate_Type1.xaml load QuestionTemplate_Type1.xaml If Question Type is TYPE2 load InstructionTemplate_Type2.xaml load ChoiceTemplate_Type2.xaml load QuestionTemplate_Type2.xaml If Question Type is TYPE3 load InstructionTemplate_Type3.xaml load ChoiceTemplate_Type3.xaml load QuestionTemplate_Type3.xaml else load InstructionTemplate_Type3.xaml