1

我在 Ubuntu 12.04 上使用 Django 1.4 和 Python 2.7。

编辑:我正在清除这个问题的一些错误部分,因为它似乎再次发生了同样的问题。它工作得很好——我没有做任何改变——现在它失败了。那是怎么回事?

这基本上是视图的样子:

@login_required
def request_new_project(request):
    """
    ..  function:: request_new_project()

        Collect information to call the form used to create a new project

        :param request: Django Request object
    """
    user_dict = { 'rsb_username'  : request.user.username}
    form = CreateProject(initial = user_dict)
    data = { 'user' : request.user }
    data.update(csrf(request))
    data.update({ 'form' : form })

    return render_to_response("create_project.html", data)

@login_required
def add_project(request):
    """
    ..  function:: add_project()

        Add a project for the user

        :param request: Django Request object
    """

    if (request.method == "POST"):
        user = User.objects.get(username = request.POST.get('rsb_username'))
        userProfile = UserProfile.objects.get(user = user)

        new_project = Projects(client = userProfile,
                               project_name = request.POST.get('rsb_project_name'),
                               description = request.POST.get('rsb_description'),
                               budget = request.POST.get('rsb_budget'),
                               time_frame = request.POST.get('rsb_time_frame'),
                               time_frame_units = request.POST.get('rsb_time_frame_units'),
                               contact = request.POST.get('rsb_point_of_contact'),
                               contact_email = request.POST.get('rsb_contact_email'),
                               contact_phone = request.POST.get('rsb_contact_phone'),
                               price_quote = 0,
                               eta = 'To Be Determined',
                               current_status = 'Waiting for quote',
                               )
        new_project.save()
        return view_projects(request)

我收到以下错误:

Cannot assign "<UserProfile: UserProfile object>": "Projects.client" must be a "User" instance.

我没有改变模型。

# Create a table for users
class UserProfile(models.Model):
    user = models.OneToOneField(User)

    # Client Info
    company_name = models.CharField(max_length = 200)
    client_type = models.CharField(max_length = 200)
    address1 = models.CharField(max_length = 200)
    address2 = models.CharField(max_length = 200)
    city = models.CharField(max_length = 200)
    state = models.CharField(max_length = 200)
    country = models.CharField(max_length = 200)
    zip_code = models.CharField(max_length = 200)
    phone_number = models.CharField(max_length = 200)

# Create a table to manage project requests
class Projects(models.Model):
    client = models.ForeignKey(User)
    project_name = models.CharField(max_length = 50)
    description = models.TextField()
    budget = models.CharField(max_length = 50)
    time_frame = models.DecimalField(max_digits = 3, decimal_places = 1)
    time_frame_units = models.CharField(max_length = 25)
    contact = models.CharField(max_length = 50)
    contact_email = models.EmailField()
    contact_phone = models.CharField(max_length = 25)
    price_quote = models.DecimalField(max_digits = 10, decimal_places = 2)
    eta = models.CharField(max_length = 200)
    current_status = models.CharField(max_length = 200)

有什么建议么?

更新 1:从实际数据库中,我可以看到其中一个rsb_projects约束是: rsb_projects_client_id_fkey (client_id) REFERENCE rsb_userprofile (id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE NO ACTION DEFERRABLE INITIALLY DEFERRED

如果这有帮助...

在我看来,即使我已经定义了ForeignKeymodels.py反对User数据库的UserProfileid 。

想法?

4

1 回答 1

2

错误正是它所说的。

为了创建新项目,您需要为项目对象提供用户配置文件对象,而不是用户配置文件 id

   user = User.objects.get(id=7)
   userprofile = user.get_profile()
   project.client = userprofile

请注意,它userprofile是分配给项目实例的客户端属性的对象。您不能userprofile对象的 id 分配给项目实例的客户端属性。

另外,不要将您的用户 ID 与您的用户配置文件 ID 混淆。它们可能并不完全相同。

每当在数据库中创建新用户时,用户 ID 是 auth_user 表中自动生成的主键。每当创建与用户相关的相应用户配置文件时,userprofile id 就是在 profiles_userprofile 表中自动生成的主键。

换句话说,您的add_project视图函数需要读取类似

if (request.method == "POST"):
    user = User.objects.get(username = request.POST.get('rsb_username'))
    # userprofile = UserProfile.objects.get(user = user)  <-- we don't need this anymore.

    new_project = Projects(client = user,  # <--- give it a user instance of course now that your model has changed
                           project_name = request.POST.get('rsb_project_name'),
                           description = request.POST.get('rsb_description'),
                           budget = request.POST.get('rsb_budget'),
                           time_frame = request.POST.get('rsb_time_frame'),
                           time_frame_units = request.POST.get('rsb_time_frame_units'),
                           contact = request.POST.get('rsb_point_of_contact'),
                           contact_email = request.POST.get('rsb_contact_email'),
                           contact_phone = request.POST.get('rsb_contact_phone'),
                           )
    new_project.save()

关键要点是您需要确定您的原始模型定义是什么。

如果在您的项目类中,您的客户端属性作为 FK 分配给用户,那么您需要给它一个用户对象。

如果在您的 Project 类中,您的客户端属性作为 FK 分配给 UserProfile,那么您需要给它一个 userprofile 对象。

于 2012-10-14T14:13:04.330 回答