我有一个Scala函数,可以使用以下命令将文件发送回前端:
def sendMefile(id: String, template: String) = Action { request =>
val file = convert(latexDir, id, template)
Ok.sendFile(file)
}
在此功能文件中,我将需要将其发送为pdf文件。但是,现在我被要求发回一个json对象,该对象的前端看起来像这样:
{'id':id, 'file':file}
有类似的地方:
Scala Play upload file within a form
但我认为我无法使用此解决方案(因为系统要求我发送json)。