首页 > 其他 > 详细

AttributeError: 'dict_values' object has no attribute 'translate'

时间:2016-10-14 23:50:50      阅读:2374      评论:0      收藏:0      [点我收藏+]
/*****************************************************************************************
 *          AttributeError: ‘dict_values‘ object has no attribute ‘translate‘
 * 说明:
 *     由于目前使用的是Python3,在解读MySQL的ORM库的时候,结果直接遇到这个错误。
 * 
 *                                                       2016-10-13 深圳 南山平山村 曾剑锋
 ****************************************************************************************/

一、参考文档:
    1. Get: TypeError: dict_values object does not support indexing when using python 3.2.3 [duplicate]
        http://stackoverflow.com/questions/17431638/get-typeerror-dict-values-object-does-not-support-indexing-when-using-python

二、解决方法:
        return Database.execute(insert, self.__dict__.values())
    to
        return Database.execute(insert, list(self.__dict__.values()))

 

AttributeError: 'dict_values' object has no attribute 'translate'

原文:http://www.cnblogs.com/zengjfgit/p/5962260.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!