本帖最后由 蒋磊磊 于 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)
|