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

Posted zengjf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: 'dict_values' object has no attribute 'translate'相关的知识,希望对你有一定的参考价值。

/*****************************************************************************************
 *          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'的主要内容,如果未能解决你的问题,请参考以下文章

facenet pyhton3.5 训练 train_softmax.py 时报错AttributeError: 'dict' object has no attribute '

'dict' object has no attribute 'a'

AttributeError: 'list' object has no attribute 'data'智障错误

Python AttributeError:“dict”对象没有属性“append”

如何更正错误“AttributeError: 'dict_keys' object has no attribute 'remove'”?

获取 AttributeError: 'dict' object has no attribute 'parse' 。尝试读入多个 xlsx 文件时