我在models.py中定义了这个模型
class FarmAnalytics(models.Model):
water_saved = models.FloatField(default = 0, decimal_places = 2)
last_full_execution = models.DateField(auto_now=False, auto_now_add=False)
current_state = models.CharField(max_length=50) #watering/calculating/resting
运行manage.py的运行服务器命令后得到的堆栈跟踪
Traceback (most recent call last):
File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 338, in execute_from_command_line
utility.execute()
File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 312, in execute
django.setup()
File "/Library/Python/2.7/site-packages/django/__init__.py", line 18, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Library/Python/2.7/site-packages/django/apps/registry.py", line 108, in populate
app_config.import_models(all_models)
File "/Library/Python/2.7/site-packages/django/apps/config.py", line 198, in import_models
self.models_module = import_module(models_module_name)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
File "/Users/krishna/Documents/temp/tutorial/quickstart/models.py", line 10, in <module>
class FarmAnalytics(models.Model):
File "/Users/krishna/Documents/temp/tutorial/quickstart/models.py", line 11, in FarmAnalytics
water_saved = models.FloatField(default = 0, decimal_places = 2)
TypeError: __init__() got an unexpected keyword argument 'decimal_places'
我无法弄清楚我做错了什么,我是django的新手,刚刚开始使用它。
答案 0 :(得分:4)
字段类型FloatField
不接受decimal_places
作为选项,它是DecimalField
的选项。如果符合您的需要,您可以尝试通过DecimalField更改FloatField。