另一个新手问题,
我将项目保存到数据库后,我尝试访问 它是重定向页面的主键。但我无法完成它。 我尝试手动处理交易,正如它在document中解释的那样。
这可能是因为使用管理员模式?
我收到此错误:
invalid literal for int() with base 10: 'None'
我将返回行更改为将id转换为字符串
return HttpResponseRedirect("/blog/page/"+str(page.id)+"/")
这是代码段。
@transaction.commit_manually
def new_post_save(request):
.
.
.
page.save()
sid = transaction.savepoint()
transaction.savepoint_commit(sid)
return HttpResponseRedirect("/blog/page/"+page.id+"/")
这是原始视图的其余部分和模型
def new_post_save(request):
page_name = request.POST["page_name"]
content = request.POST["content"]
postCategory = request.POST["cat"]
page = BlogPost(title = page_name,body = content, author = request.user, category = postCategory)
page.save()
return HttpResponseRedirect("/blog/page/"+page.id+"/")
模型
class BlogPost(models.Model):
id = models.IntegerField(primary_key=True)
author = models.ForeignKey(User)
title = models.CharField(max_length=128)
body = models.TextField()
category = models.CharField(max_length=10, default='other')
def __unicode__(self):
return self.title
这里是base.py我想我没有覆盖保存功能。
def save(self, force_insert=False, force_update=False, using=None):
"""
Saves the current instance. Override this in a subclass if you want to
control the saving process.
The 'force_insert' and 'force_update' parameters can be used to insist
that the "save" must be an SQL insert or update (or equivalent for
non-SQL backends), respectively. Normally, they should not be set.
"""
if force_insert and force_update:
raise ValueError("Cannot force both insert and updating in model saving.")
self.save_base(using=using, force_insert=force_insert, force_update=force_update)
save.alters_data = True
在settings.py中按数据库
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'blog.db',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
答案 0 :(得分:4)
从Model类中删除id
字段。
如果你没有指定主键,Django会自动插入一个名为id
的AutoField,所以你不需要它。
因为您已经明确表示您的 id
字段是一个整数主键,所以Django希望您自己管理它。这是IntField
,正如您声明的那样,不是AutoField
,因此不会自动分配任何值。
答案 1 :(得分:0)
使用它而不是手动调用save()
page = BlogPost.objects.create(title = page_name,body = content, author = request.user,category = postCategory)