1

我正在将 Play2 与 Scala 一起使用,我想在端点 Scaladoc 中写入有关请求正文的信息。

/**
  * Replaces images for a given user.
  *
  * @param id The user id
  * @body a multipart HTTP body with the image files   <-- NO GOOD
  * @return
  */
def replaceImages(id: String) = Action.async(parse.multipartFormData) {
    ...
}

我在Scaladoc 的文档中找不到合适的标签。什么是合适的标签?

4

0 回答 0