我们正在使用 Play Framework 2.0。服务 REST 请求。我们希望能够将文件传递给 POST 请求,并能够在我们的 Contoller 中处理它。
我最终得到以下结果:
GET /customer/:id/photos controllers.PhotosController.addPhoto(id: Integer, page: String)
我试图在控制器代码中获取文件的内容,但没有运气。
我通过以下方式发送 POST 请求:
curl.exe -X GET localhost:9000/customer/23/photos?page=Sun.jpg
任何想法如何处理这种情况?