所以我有以下模型
class Stock(models.Model):
name = models.CharField(max_length=50)
unit_measure = models.CharField(max_length=10)
unit_price = models.DecimalField(max_digits=10, decimal_places=2)
当我尝试在 Django 的管理站点中添加该模型的实例时,它给了我以下错误
(<class 'TypeError'>, TypeError('conversion from bytes to Decimal is not supported',))
Exception Location: /Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/PyMySQL-0.5-py3.3.egg/pymysql/connections.py in defaulterrorhandler, line 209
但是当我使用 phpmyadmin 查找数据库时,数据已成功插入表中。
我正在使用 Django1.5+Python3.3+MySQL5.5+PyMySQL
有人知道这里出了什么问题吗?