使用數字範圍欄位建立模型
將值作為 Python 元組而不是 NumericRange
輸入更簡單,更容易。
Book.objects.create(name='Pro Git', ratings_range=(5, 5))
NumericRange
的替代方法:
Book.objects.create(name='Pro Git', ratings_range=NumericRange(5, 5))
將值作為 Python 元組而不是 NumericRange
輸入更簡單,更容易。
Book.objects.create(name='Pro Git', ratings_range=(5, 5))
NumericRange
的替代方法:
Book.objects.create(name='Pro Git', ratings_range=NumericRange(5, 5))