我正在尝试在 mongodb 中插入一个 json 作为单个字段。mongodb 对象应该是这样的:
{
id: "239849",
text:"{\r\n\t\"address\": \"newark\",\r\n\t\"phone\": \"55523423\"\r\n}"
}
现在我可以使用 mongo express 将它添加到 mongo 但每次我阅读它时,文本字段都被视为一个数组。有没有办法在引号内添加带有逗号的文本并让 mongo 将其视为单个字符串?
我正在尝试在 mongodb 中插入一个 json 作为单个字段。mongodb 对象应该是这样的:
{
id: "239849",
text:"{\r\n\t\"address\": \"newark\",\r\n\t\"phone\": \"55523423\"\r\n}"
}
现在我可以使用 mongo express 将它添加到 mongo 但每次我阅读它时,文本字段都被视为一个数组。有没有办法在引号内添加带有逗号的文本并让 mongo 将其视为单个字符串?