我下载了类型安全应用程序“modern-web-template”,它使用 play + scala + reactivemongo 实现了一个 crud 应用程序
我试图添加一个新功能。我希望能够通过像这样调用带有两个参数的 URL
localhost:9000/users?dni&30000000
首先我将此路由添加到路由文件
GET /users @controllers.Users.findUsersParams(tipoDocumento: String ?= "", numeroDocumento: String ?= "")
然后我将此方法添加到控制器
def findUsersParams(tipoDocumento: String, numeroDocumento: String) = Action.async {
// let's do our query
val cursor: Cursor[User] = collection.
// find all
find(Json.obj("tipoDocumento" -> tipoDocumento, "numeroDocumento" -> numeroDocumento)).
// sort them by creation date
sort(Json.obj("created" -> -1)).
// perform the query and get a cursor of JsObject
cursor[User]
// gather all the JsObjects in a list
val futureUsersList: Future[List[User]] = cursor.collect[List]()
// transform the list into a JsArray
val futurePersonsJsonArray: Future[JsArray] = futureUsersList.map { users =>
Json.arr(users)
}
// everything's ok! Let's reply with the array
futurePersonsJsonArray.map {
users =>
Ok(users(0))
}
}
我无法返回应该是一个用户的预期结果,而是让集合中的所有用户