关键字参数/词典

时间:2013-03-15 13:28:06

标签: python django

在Django应用程序中,我有一个函数接收请求并解析返回结果字典的参数。

例如,像这样:

def parse_event_parameters(request):
    """
    Parse the parameters for a given event
    from a request and return the result
    as a dictionary of strings.
    """
    try:
        request_params = {
            'event_id': id,
            'start_date': request.POST[id + '_start_date'],
            'end_date': request.POST[id + '_end_date'],
            'shift_type': request.POST[id + '_shift_type'],
            'rec_type': request.POST[id + '_rec_type'],
            'event_length': request.POST[id + '_event_length'],
            'event_pid': request.POST[id + '_event_pid'],
        }
    except KeyError, err:
        raise err
    return request_params

然后我将此字典传递给模型中的方法,以创建或更新相关事件。

e.update(**parameters)

在那里,update方法调用超类,如下所示:

    super(Event, self).update(event_id, start_date,
           end_date, shift_type, rec_type,
           event_length, event_pid, employee_id)

超类基本上验证请求的值并将它们保存到模型中。现在,我需要在模型中添加另一列,并需要更新每个方法。

我对Django很新,但这似乎不是最干净的方法。

有更优雅的方法来接近这个吗? 我应该通过每种方法保留字典而不打扰拆包吗?

1 个答案:

答案 0 :(得分:2)

听起来你应该使用ModelForms:

https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#modelform

通常,每当您处理请求数据(POST或GET或其他)时,您应该考虑使用表单来验证它。一个常见的误解是Django表单仅用于显示实际的HTML表单,而实际情况是它是一个可以在许多情况下工作的数据验证API。 ModelForm更进一步,将Django表单绑定到模型类,并负责创建或更新模型(当您在表单上调用save()时)。

然后,一旦了解了ModelForms,请考虑查看Django的通用视图以创建和更新模型:

https://docs.djangoproject.com/en/1.5/topics/class-based-views/generic-editing/