西洛! 我有这个JSON结构:
{
"author" : "some author"
"comment" : [{
"text" : "some text",
"date" : "some date",
}, {
"text" : "some text",
"date" : "some date",
}]
}
我需要举例来检查所有评论日期。我写了这段代码:
UpdateOperations<Blog> ops;
Query<Blog> updateQuery = ds.createQuery(Blog.class).disableValidation().filter("comment.$.date", "some date").enableValidation();
ops = ds.createUpdateOperations(Blog.class).disableValidation().set("comment.$.text", "new text").enableValidation();
ds.update(updateQuery, ops);
但它不起作用。你能告诉我如何处理吗啡中的物体数组吗?
答案 0 :(得分:1)
过滤器不应该有$
运算符,您只能使用点表示法。尝试:
UpdateOperations<Blog> ops;
Query<Blog> updateQuery = ds.createQuery(Blog.class).field("comment.date").equal("some date");
ops = ds.createUpdateOperations(Blog.class).disableValidation().set("comment.$.text", "new text").enableValidation();