3

我在 django 1.5 的 views.py 中处理 ajax 的脚本。构建我的 json 文件后,我必须将用户名放入 cookie 中。这个名字有法国口音的名字,比如“hervé”。这是我的代码的一部分

if user.is_active:
            login(request, user)
            name = 'Hervé'
            jsondict['success'] = True
            jsondict['text']['welcome'] = 'Bienvenue, %s!' % name

            if name:
                fn = name
    response = HttpResponse(json.dumps(jsondict, cls=DjangoJSONEncoder, ensure_ascii=False),mimetype='application/json')
    if fn:
        set_cookie(response,"full_name",fn)

出现的错误是

UnicodeEncodeError: 'ascii' codec can't encode character u'\xe9' in position 4: ordinal not in range(128)

为了解决这个问题,我使用了 unicode()、decode()……但没有任何改变。错误来自 set_cookie() 函数吗?还是 json 文件?我能做些什么来解决它?

这是 set_cookies 函数

def set_cookie(response, key, value, days_expire = 7):
import datetime
from django.conf import settings
if days_expire is None:
    max_age = 365 * 24 * 60 * 60  #one year
else:
    max_age = days_expire * 24 * 60 * 60 
expires = datetime.datetime.strftime(datetime.datetime.utcnow() + datetime.timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT")
response.set_cookie(key, value, max_age=max_age, expires=expires, domain=settings.SESSION_COOKIE_DOMAIN, secure=settings.SESSION_COOKIE_SECURE or None)
4

1 回答 1

1

好的,现在我修好了。在你的views.py的头,把这个解释器

# -*- coding: latin-1 -*-

然后在你的函数中,

name = 'Hervé'
name.decode('latin-1').encode('ascii','xmlcharrefreplace') //add this line
jsondict['success'] = True
jsondict['text']['welcome'] = 'Bienvenue, %s!' % name
于 2013-04-05T00:54:26.013 回答