django verbose name中文解碼出錯

2021-06-21 16:08:47 字數 503 閱讀 6014

對於執行在python3.x以上django1.6.x版本而言,由於統一使用了unicode,所以中文顯示的問題大大減少。對於以下**,如果顯示unicodeerror錯誤:

class book(models.model):

title = models.charfield(verbose_name='出版商',max_length=100)

authors = models.manytomanyfield(author)

publisher = models.foreignkey(publisher)

publication_date = models.datefield(blank=true,null=true)

def __str__ (self):

return '%s(%s)' % (self.title,self.publisher)

則主要是本檔案的編碼錯誤,不同於python2.x系列的解碼錯誤。只需在檔案第一行加入"# coding=gbk"即可。

編碼 解碼 中文編譯碼

字串和字符集的關係 字串是python程式的一種格式 位元組串是網路傳輸的一種形式 字串和位元組串轉換 字串 str encode 位元組串 bytes 位元組串 bytes decode 字串 str ascii字符集是utf 8字符集的前128位字元,可以說ascii字符集是utf 8字符集的子...

Oracle Unicode轉中文(解碼)

情景描述 將資料庫中的某個字段誤儲存的是unicode編碼,需要將其改成中文。測試 將unicode轉中文 select unistr replace u6d4b u8bd5unicode u8f6c u4e2d u6587 u from dual 結果是 測試unicode轉中文 實現 對某欄位進...

Qt中中文解碼問題

方法一 即只要使用codec tounicode 中文 就可以實現所以中文的編碼問題,但這個存在一定的缺點,就是每一次都要寫上乙個codec tounicode 能不能更簡單一點的?方法二 qtextcodec setcodecfortr qtextcodec codecforname gb1803...