0

这是我的模型:

 class company_profile(models.Model):
       user=models.ForeignKey(User, unique=True)
       company=models.CharField(max_length=200)

      def __unicode__(self):
            return self.company

当我得到 django shell 时,我做了以下操作,它工作正常:

  from my_app.models import company_profile
  everything = company_profile.objects.all()
  # this gives me the correct out put of the existing company names , 

但是当我执行以下操作时:

  username = company_profile.objects.all().filer(user='rakesh')

  this is the error , that i am getting : 

  ValueError: invalid literal for int() with base 10: 'rakesh'

我该如何解决这个问题,或者我的查询错误。

4

1 回答 1

5

你的查询是错误的。该user="rakesh"子句需要获取User实例或实例的PK User

你可能是filter(user__username='rakesh')什么意思,这取决于你有什么领域User

于 2013-11-04T21:23:16.950 回答