我使用jQuery Ajax将CkEditor内联编辑的内容发布到Tastypie。内容包含HTML标签和中文字符。这就是我现在所拥有的:
**api serializer**
class urlencodeSerializer(Serializer):
formats = ['json', 'jsonp', 'xml', 'yaml', 'html', 'plist', 'urlencode']
content_types = {
'json': 'application/json',
'jsonp': 'text/javascript',
'xml': 'application/xml',
'yaml': 'text/yaml',
'html': 'text/html',
'plist': 'application/x-plist',
'urlencode': 'application/x-www-form-urlencoded',
}
def from_urlencode(self, data,options=None):
qs = dict((k, v if len(v)>1 else v[0] )
for k, v in urlparse.parse_qs(data).iteritems())
return qs
def to_urlencode(self,content):
pass
from_urlencode
方法可以很好地处理英文字符,但是如果有一些中文字符,则会出现错误:
'ascii'编解码器无法解码位置0中的字节0xe6:序数不在范围内(128)
如何解决这个问题?