def get_id(self): """ get_id 方法为用户返回唯一的unicode标识符。我们用数据库层生成唯一的id。 :return: """ try: return unicode(self.id) # python 2 except NameError: return str(self.id) # python 3
def get_id(self): return unicode(self.id)