我发现自己需要制作一个LiftResponse,我有一个 生成Elem的现有代码片段,其中包含
东西如何将其转换为LiftResponse? (我正在使用Lift 2.2M1。)
答案 0 :(得分:0)
Via the mailing list,David Pollak建议
val r: Req = ...
val myResponse: Box[LiftResponse] =
for {
session <- S.session
template = TemplateFinder.findAnyTemplate("my_templates" :: "my_template" :: Nil)
response <- session.processTemplate(template, r, r.path, 200)
} yield response
虽然那个帖子也试图解释为什么我试图做的事情一开始有点奇怪。