A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

© 蒋磊磊 中级黑马   /  2017-8-7 14:30  /  1902 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 蒋磊磊 于 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, 下载次数: 29)

3.png
您需要登录后才可以回帖 登录 | 加入黑马