次の問題があります。
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 :
どうすればこの問題を解決できますか?
ご協力いただきありがとうございます!