黑马程序员技术交流社区

标题: python django models [打印本页]

作者: 蒋磊磊    时间: 2017-8-7 14:30
标题: python django models
本帖最后由 蒋磊磊 于 2017-8-8 13:09 编辑

参考代码
# models.py
from django.db import models
class Test(models.Model):
    name = models.CharField(max_length=20)
#testdb.py
from django.http import HttpResponse
from TestModel.models import Test
# 数据库操作
def testdb(request):
    test1 = Test(name='runoob')
    test1.save()
    return HttpResponse("<p>数据添加成功!</p>")


报错:ModuleNotFoundError: No module named 'Test'

3.png (169.3 KB, 下载次数: 7)

3.png





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2