Allow only positive decimal numbers

前端 未结 5 1191
北海茫月
北海茫月 2021-02-01 13:48

Within my Django models I have created a decimal field like this:

price = models.DecimalField(_(u\'Price\'), decimal_places=2, max_digits=12)

O

5条回答
  •  心在旅途
    2021-02-01 14:19

    Use the MinValueValidator.

    price = models.DecimalField(_(u'Price'), decimal_places=2, max_digits=12, validators=[MinValueValidator(Decimal('0.01'))])
    

提交回复
热议问题