在MongoDB中插入记录时转义引号?
双引号具有unicode,其值为\u0022。首先让我们创建一个包含文档的集合-
> db.escapingQuotesDemo.insert({ "StudentFullName": "John \u0022 Smith" });
WriteResult({ "nInserted" : 1 })
> db.escapingQuotesDemo.insert({ "StudentFullName": "David \u0022 Miller" });
WriteResult({ "nInserted" : 1 })
> db.escapingQuotesDemo.insert({ "StudentFullName": "John \u0022 Doe" });
WriteResult({ "nInserted" : 1 })
> db.escapingQuotesDemo.insert({ "StudentFullName": "Carol \u0022 Taylor" });
WriteResult({ "nInserted" : 1 })以下是在find()方法的帮助下显示集合中所有文档的查询-
> db.escapingQuotesDemo.find().pretty();
这将产生以下输出-
{
"_id" : ObjectId("5ccf42e2dceb9a92e6aa195b"),
"StudentFullName" : "John \" Smith"
}
{
"_id" : ObjectId("5ccf42f0dceb9a92e6aa195c"),
"StudentFullName" : "David \" Miller"
}
{
"_id" : ObjectId("5ccf42f9dceb9a92e6aa195d"),
"StudentFullName" : "John \" Doe"
}
{
"_id" : ObjectId("5ccf4303dceb9a92e6aa195e"),
"StudentFullName" : "Carol \" Taylor"
}热门推荐
4 简短元宵节祝福语
5 祝福语简短的微信
10 生日祝福语 简短独特男童
11 上班祝福语简短10字
12 中秋祝福语简短女朋友
13 结婚伴娘祝福语简短精辟
14 集体生日祝福语简短的
15 朋友买新房祝福语简短
16 妈咪跟我生日祝福语简短
17 提前生日祝福语 简短
18 给老师新年祝福语 简短