On Fri, 2009-01-16 at 03:19 -0800, Gath wrote:
> Guys
> Am getting the following error message when try to save on my form:
> 
> Cannot assign "U'1'": "Answer.Questionid" must be "Question" instance

The error message is telling you exactly what the problem is. You should
believe the error message.

> 
> On my Answer Model questionid is Foreign field to the Question model
> defined as follows,
> 
> Class Answer(models.Model):
>     answer=models.ForeignKey(Question, editable=False)

Presumably this is a type and you meant the attribute name was
"questionid"?

>    ....
> 
> On my view;
> 
> Post_answer(request, quest_id=None):
> ...
> 
> form = AnswerForm(request.POST)
> if form.is_valid():
>   answer = form.save(False)
>   answer.userid = request.user
>   answer.questionid = quest_id

If you don't want to retrieve the full question object and only want to
assign the related field's primary key value, you have to assign to the
attribute that corresponds to the ForeignKey's value. In this case, that
would be questionid_id.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to