本文整理汇总了Python中models.Product.to_dict方法的典型用法代码示例。如果您正苦于以下问题:Python Product.to_dict方法的具体用法?Python Product.to_dict怎么用?Python Product.to_dict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Product
的用法示例。
在下文中一共展示了Product.to_dict方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_to_dict
# 需要导入模块: from models import Product [as 别名]
# 或者: from models.Product import to_dict [as 别名]
def test_to_dict(self):
product = Product('567d07d533d541dd8ad4753622e76243',
'4aa53e646bf84faca9a76c020b0682de',
'testing and testing',
0.99,
0.66,
18.06061237898499,
59.33265972650577)
expected = {
'id': '567d07d533d541dd8ad4753622e76243',
'title': 'testing and testing',
'popularity': 0.99,
'quantity': 0.66,
'shop': {
'id': '4aa53e646bf84faca9a76c020b0682de',
'lng': 18.06061237898499,
'lat': 59.33265972650577,
}
}
self.assertDictEqual(expected, product.to_dict())