我正在使用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's documentation中找到合适的标签。什么是合适的标签?