3

我下载了类型安全应用程序“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))
}
}

我无法返回应该是一个用户的预期结果,而是让集合中的所有用户

4

1 回答 1

1

您的查询中有错误,应该是

http://localhost:9000/users?tipoDocumento=dni&numeroDocumento=30000000

除了该代码似乎很好,应该可以工作。

于 2014-10-25T19:20:36.843 回答