我想开发一个 Lift web 应用程序,我有一个索引页面,这里有一个正文:
<div id="main" class="lift:surround?with=default&at=content">
<div> App </div>
<div>
<form method="post" class="lift:DumbForm">
<table>
<tr><td> Email:</td> <td><input name="email" type="text"></td></tr>
<tr><td> Password:</td> <td><input name="pwd" type="password"></td></tr>
<tr><td> Name:</td> <td><input name="name" type="text"></td></tr>
<tr><td><input type="submit" value="Sign in"></td> <td><input type="reset" value="Reset"></td></tr>
</table>
</form>
</div>
</div>
使用相应的片段(文件“DumbForm.scala”):
package code
package snippet
import net.liftweb._
import http._
import scala.xml.NodeSeq
/**
* A snippet that grabs the query parameters
* from the form POST and processes them
*/
object DumbForm {
def render(in: NodeSeq): NodeSeq = {
// use a Scala for-comprehension to evaluate each parameter
for {
r <- S.request if r.post_? // make sure it's a post
name <- S.param("name") // get the name field
} {
S.notice("Nom: "+name)
S.redirectTo("/hello")
}
// pass through the HTML if we don't get a post and
// all the parameters
in
}
}
我想将此片段中的属性“名称”传递给另一个视图,即 HTML 页面(“hello.html”),它将获取并显示该名称。
但是我不知道如何将片段中的“name”参数传递给视图(hello.html),以及如何在视图中获取此参数?!
此刻,我的 hello.html 有:
<body>
<p> Hello ... (you must display the name!)</p>
</body>