Javascript:在json.parser(json)之后维护unicode

时间:2016-11-14 09:12:57

标签: javascript json parsing unicode mongodb-query

我有一个JSON对象,如下所示

var a = {"1.jpg":aaa}

为了将JSON对象插入MongoDB,我尝试转换'。'通过以下步骤将其对应的Unicode。

var b = JSON. stringify(a);
b.replace(".","\\uFF0E")
var c = JSON.parse(b);

解析JSON' b' Unicode再次更改为'。' MongoDB不接受。有没有办法维护Unicode而不是'。'?

0 个答案:

没有答案