我的代码中有两个查询
第一个是update
查询
var modifier = BSONDocument("$set" -> BSONDocument("client_id" -> client_id,
"access_token" -> access_token,
"refresh_token" ->refresh_token,
"inserted_date" -> inserted_date))
var selecter = BSONDocument("$and" -> BSONArray(BSONDocument("account_id" -> account_id), BSONDocument("refresh_token" -> object.refreshToken)))
tokensCollection.update(selecter, modifier)
第二个是find
查询
var query = BSONDocument("$and" -> BSONArray(BSONDocument("account_id" -> account_id), BSONDocument("refresh_token" -> refresh_token)))
val resp = tokensCollection.find(query).one[AccessTokens]
var result = Await.result(resp, 15 seconds)
result.get
我的第二个find
查询在第一个查询update
之前执行。我遇到了问题
method have exception:java.util.NoSuchElementException: None.get
如何在成功更新第一个查询后调用查询查询
答案 0 :(得分:2)
我希望您的tokensCollection.update()
来电也会返回某种Future[_]
。只有当Future
完成时,才能保证您的结果在数据库中可用。
你可以像这样序列化两个:
val resp = tokensCollection.update(s, m).flatMap(_ => tokensCollection.find(query))
或使用for
理解:
for {
_ <- tokensCollection.update(s, m)
q <- tokensCollection.find(query)
} yield q
请注意,Await
不是您应该在制作中使用的内容;相反,在任何地方返回Future
并在最终结果上调用map
。但是,如果你只是在玩游戏,它可能对调试有用。
答案 1 :(得分:0)
这是因为更新比查找查询需要更多时间。您必须序列化查询。您必须等待更新查询的响应,然后执行查询查询。