我有以下问题:
在 MongoDB 中,我有名称中带有冒号的字段。要解决我通常会使用的字段:
var map = function() {
emit(this._id, this.sth.field);
}
但在字段名称内有一个冒号,例如:
var map = function() {
emit(this._id, this.sth.fie:ld);
}
MongoDB 回归JavaScript execution failed: SyntaxError: Unexpected token :
我怎么解决这个问题?
谢谢你的帮助!