MySQL创建数据库指定字符集
摘要:CREATE DATABASE `test2` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
阅读全文
posted @
2017-05-17 09:36
HeJD
阅读(203)
推荐(0)
django test基本操作
摘要:在tests.py中,导入TestCase包from django.test import TestCase创建测试类:class SimpleTest(TestCase):创建测试函数,必须以test_开头def test_login(self):模...
阅读全文
posted @
2017-05-05 15:06
HeJD
阅读(326)
推荐(0)