如何在 mongodb shell 中使用变量作为字段名称的一部分?我正在尝试执行以下操作:
> var site = "google.com";
> var y = 10;
> var m = 5;
// This fails (field names as concatenation):
> db.test.update({ "domain" : site},
{ $inc : {"counts.year."+y : 1, "counts.month."+m : 1}}, upsert=true);
> Thu Apr 19 19:12:56 SyntaxError: missing : after property id (shell):1
// This works:
> db.test.update({ "domain" : site}, { $inc : {"counts.year.10" : 1,
"counts.month.5" : 1}}, upsert=true);
我想问题出在创建 JS 对象的方式上:例如var t = 10; doc = {t : 0};
可以工作,但是var t = 10; doc = {"Test."+t : 0}
;才不是。我该如何解决这个问题?
谢谢,
/大卫