我有一个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而不是'。'?