2

我有以下 JSON 数组:

[u'steve@gmail.com']

“u”显然是 unicode 字符,它是由 Python 自动创建的。现在,我想把它带回Objective-C并使用它解码成一个数组:

+(NSMutableArray*)arrayFromJSON:(NSString*)json
{
    if(!json) return nil;
    NSData *jsonData = [json dataUsingEncoding:NSUTF8StringEncoding];
   //I've also tried NSUnicodeStringEncoding here, same thing
    NSError *e;
    NSMutableArray *result= [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&e];
    if (e != nil) {
        NSLog(@"Error:%@", e.description);
        return nil;
    }
    return result;
}

但是,我收到一个错误:(Cocoa error 3840.)" (Invalid value around character 1.)

我该如何补救?

编辑:这是我将实体从 Python 带回 Objective-c 的方法:

首先,我将实体转换为字典:

def to_dict(self):
    return dict((p, unicode(getattr(self, p))) for p in self.properties()
                if getattr(self, p) is not None)

我将此字典添加到列表中,将我的 responseDict['entityList'] 的值设置为此列表,然后self.response.out.write(json.dumps(responseDict))

但是我回来的结果仍然有那个'u'字符。

4

1 回答 1

6

[u'steve@gmail.com'] 是数组的解码 python 值,它不是有效的 JSON。

有效的 JSON 字符串数据只是["steve@gmail.com"].

通过执行以下操作将 python 中的数据转储回 JSON 字符串:

import json
python_data = [u'steve@gmail.com']
json_string = json.dumps(data)

python 字符串文字上的u前缀表示这些字符串是 unicode,而不是 python2.X (ASCII) 中的默认编码。

于 2012-06-07T16:48:18.563 回答