0

你好我有以下问题(对不起我的英语不好)

我有以下型号

我有 3 个模型,其中“Prediccion”有两个来自“Juego”模型和“Usuario”模型的外键

class Juego(models.Model):
    #id = models.IntegerField(primary_key=True, db_column='Id')
    equipoa = models.CharField(max_length=135, db_column='EquipoA')
    equipob = models.CharField(max_length=135, db_column='EquipoB')
    resultadoa = models.IntegerField(null=True, db_column='ResultadoA', blank=True)
    resultadob = models.IntegerField(null=True, db_column='ResultadoB', blank=True)
    fecha = models.DateField(null=True, db_column='Fecha', blank=True)
    class Meta:
        db_table = u'juego'

class Usuario(models.Model):
    # id = models.IntegerField(primary_key=True, db_column='Id') # Field name made lowercase.
    nombre = models.CharField(max_length=135, db_column='Nombre') 
    fechanacimiento = models.DateField(null=True, db_column='FechaNacimiento', blank=True) 
    nombreusuario = models.CharField(max_length=135, db_column='NombreUsuario') 
    clave = models.CharField(max_length=135, db_column='Clave') 
    class Meta:
        db_table = u'usuario'

class Prediccion(models.Model):
    #id = models.IntegerField(primary_key=True, db_column='Id')
    idusuario = models.ForeignKey(AuthUser, db_column='IdUsuario') 
    idjuego = models.ForeignKey(Juego, db_column='IdJuego') # Field name made lowercase.
    equipoa = models.IntegerField(null=True, db_column='EquipoA', blank=True)
    equipob = models.IntegerField(null=True, db_column='EquipoB', blank=True) 
    resultado = models.IntegerField(null=True, db_column='Resultado', blank=True)
    class Meta:
        db_table = u'prediccion'

我有以下看法吗

from django.shortcuts import render_to_response
from scorecenter.JuegoApp.models import Juego
from scorecenter.PrediccionApp.models import Prediccion
from scorecenter.PrediccionApp.models import TipoResultado
from scorecenter.PrediccionApp.models import AuthUser

def juegosap(request, pagina="1", idgame=-1, resa=-1, resb=-1):
    if(idgame==-1 and resa==-1 and resb==-1):
        pag = int(pagina)
        pag = pag-1
        lista = Juego.objects.order_by('-fecha', '-id')[pag*4:pag*4+4]
        template_name = 'juegos_semana.html'
        return render_to_response(template_name,{'lista':lista})
    else:
        game = Juego.objects.get(id=int(idgame))
        print(game.equipoa)
        print(game.id)
        user = AuthUser.objects.get(username=request.user)
        print(user.username)
        temporal = Prediccion(idusuario = user, idjuego = game, equipoa=int(resa), equipob=int(resb))
        temporal.resultado = 1
        temporal.save()
        pag = int(pagina)
        pag = pag-1
        lista = Juego.objects.order_by('-fecha')[pag*4:pag*4+4]
        template_name = 'juegos_semana.html'
        return render_to_response(template_name,{'lista':lista})

但我收到以下错误:

Cannot assign "<Juego: Juego object>": "Prediccion.idjuego" must be a "Juego" instance.
in the next line:
temporal = Prediccion(idusuario = user, idjuego = game, equipoa=int(resa), equipob=int(resb)) 
4

2 回答 2

0

您的 idjuego 是外键,因此该值必须等于 id,

尝试:

temporal = Prediccion(idusuario = user, idjuego = game.id, equipoa=int(resa), equipob=int(resb))

另外,在您的每个模型中,请输入 unicode 以便它不会返回“< object >”。这是一个示例:

def __unicode__(self):
    return self.field_name
于 2013-02-16T17:55:41.570 回答
0
temporal.idjuego_id = game.id
temporal.save()

ForeignKey 字段将它们的值存储在一个以_id 结尾的属性中,您可以直接访问该属性以避免访问数据库。

ForeignKey 的 _id 版本是 Django 的一个特别有用的方面,每个人都应该知道并在适当的时候不时使用它。

于 2013-02-17T20:15:41.607 回答