摘要:
Model 创建表 from django.db import models class userinfo(models.Model): name = models.CharField(max_length=30) email = models.EmailField() memo = models. 阅读全文
摘要:
Django 基本操作 Django 处理请求流程 Views and URLconfs To design URLs for an application, you create a Python module called a URLconf. Like a table of contents 阅读全文
摘要:
Django 基本操作 Django 处理请求流程 Views and URLconfs To design URLs for an application, you create a Python module called a URLconf. Like a table of contents 阅读全文
摘要:
HTML HTML 基本结构 基本标签 段落 List Table 表单 css 选择器 html 标记选择器 class 选择器 /*class 选择, 找到c1的标签*/ .c1{ background-color: red; } id 选择器 /*id 选择, 找到id 等于i1的标签*/ # 阅读全文
摘要:
SQLAlchemy - Object-Relational Mapper First create Base class: declarative_base is a factory function, that returns a base class (actually a metaclass 阅读全文
摘要:
Rabbitmq Hello World! sending: 1) establish connection 2) create a queue to which the message will be delivered In RabbitMQ a message can never be sen 阅读全文