我有这个循环来解码数组“people”中的名字:
for(var idxT in persons){
var name = persons[idxT];
name = decodeURIComponent(escape(name ));
players[idxT] = name ;
} //endFor
它很好地解码了前两个名字,但是当到达第三个名字(name =“AntÃnioNunes”)时,它会在控制台上记录:
未捕获URIError:URI格式错误
注意:先前在php中使用“utf8_encode
”编码的数组中的名称
问题是这个角色“ó”。我怎么能以解码所有名字的方式处理这个问题?
由于