0
私のドキュメントでアレイをスライスするためにAggregates.projectを使用しようとしています。 マイドキュメントはmongochefにmongodb java-driver Projections.sliceの使い方
{
"date":"",
"stype_0":[1,2,3,4]
}
のように見えるとJavaでの私のコードは次のとおりです。
Aggregates.project(Projections.fields(
Projections.slice("stype_0", pst-1, pen-pst),Projections.slice("stype_1", pst-1, pen-pst),
Projections.slice("stype_2", pst-1, pen-pst),Projections.slice("stype_3", pst-1, pen-pst))))
は最終的に私が推測するエラー
First argument to $slice must be an array, but is of type: int
を取得しますこれは、stype_0の最初の要素intですが、なぜ私は本当に知りませんか?どうもありがとう!
ああ私はとても不注意です、ありがとうございます – CXWorks