English 中文(简体)
Django: 安装清洁设备时,必须在地面上安装。 确实在以前
原标题:Django: setting required=True on formfield when running clean() .. actually just before

我试图在验证过程中根据选择植被迫使一个形式领域。

def clean(self):
    cleaned_data = self.cleaned_data
    if cleaned_data.get( periodical ) == True:
        if cleaned_data.get( period_start_date ) == None:
            msg = _( custom message )
            self._errors[ period_start_date ] = ErrorList([msg])

守则的例子在发挥作用,但错误信息中没有任何区别,即:要求启动时间(并非空洞)还是确定适当的格式日期。 由于Django的验证处理得当,Im不希望取代。

我想要达到的目标(ort)是在一段时期为真实所需要的条件——开始——在选择地点定期进行排他之前就算出。 任何人对我来说都是开明的ip子吗?

Thanx。

最佳回答
def clean_period_start_date(self):
  psd = self.cleaned_data[ period_start_date ]
  prd = self.cleaned_data[ periodical ]
  if prd:
    if not psd:
      raise forms.ValidationError("Start date is required on a periodical thing...")
  return psd

仅从时间开始就清理。 那么,你可以具体提出错误。

问题回答

暂无回答




相关问题
How to get two random records with Django

How do I get two distinct random records using Django? I ve seen questions about how to get one but I need to get two random records and they must differ.

Moving (very old) Zope/Plone Site to Django

I am ask to move data from a (now offline) site driven by Plone to a new Django site. These are the version informations I have: Zope Version (unreleased version, python 2.1.3 ) Python Version 2.1....

Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

Flexible pagination in Django

I d like to implement pagination such that I can allow the user to choose the number of records per page such as 10, 25, 50 etc. How should I go about this? Is there an app I can add onto my project ...

is it convenient to urlencode all next parameters? - django

While writing code, it is pretty common to request a page with an appended "next" query string argument. For instance, in the following template code next points back to the page the user is on: &...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

热门标签