Esempio n. 1
0
    def get_id(self):
        """
            get_id 方法为用户返回唯一的unicode标识符。我们用数据库层生成唯一的id。

            :return:
        """
        try:
            return unicode(self.id)  # python 2
        except NameError:
            return str(self.id)  # python 3
Esempio n. 2
0
 def get_id(self):
     return unicode(self.id)
Esempio n. 3
0
 def get_id(self):
     return unicode(self.id)