Lift:如何将超链接绑定到服务器端方法

发布于 2024-11-18 22:04:56 字数 411 浏览 0 评论 0原文

我是 Lift 新手,我想使用超链接而不是提交按钮。我可以使用 CSS 选择器通过服务器端方法绑定我的提交按钮。例如:

  def render = {
    // define some variables to put our values into
// process the form
def process() {
      do something....
  }
}

  "type=submit" #> SHtml.onSubmitUnit(process)

}

我想使用超链接来提交表单而不是提交按钮。如何使用 process()(服务器端)方法绑定超链接。

谢谢, 普内特

I am new to Lift, I want to use hyperlink instead of submit button. I am able to bind my submit button with a server-side method use CSS Selector. for example:

  def render = {
    // define some variables to put our values into
// process the form
def process() {
      do something....
  }
}

  "type=submit" #> SHtml.onSubmitUnit(process)

}

I want to use hyperlink to submit my form instead of submit button. How can I bind hyperlink with process()(server-side) method.

Thanks,
Puneet

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁许谁一生繁华 2024-11-25 22:04:56

在这种情况下,您可能希望使用 SHtml.ajaxCall 并提供表单信息作为 JsonContext(即不与 CSS 选择器绑定):

def ajaxCall (jsCalcValue: JsExp, jsContext: JsContext, func: (String) ⇒ JsCmd) : (String, JsExp)

或者您可以使用 SHtml.a:

def a (func: () ⇒ JsObj, jsonContext: JsonContext, body: NodeSeq, attrs: ElemAttr*) : Elem

如果失败,您应该查看 SHtml 中的可用方法(jsonForm将是另一个值得一看的)并看看哪一个最适合您的用例。我鼓励您阅读《Lift in Action》的副本,其中讨论了函数绑定的工作原理,因为我认为您误解了它与请求/响应周期的关系。

In this instance you would probably want to use SHtml.ajaxCall and supply the form information as the JsonContext (i.e. not bound with CSS selectors):

def ajaxCall (jsCalcValue: JsExp, jsContext: JsContext, func: (String) ⇒ JsCmd) : (String, JsExp)

Alternativly you could use SHtml.a:

def a (func: () ⇒ JsObj, jsonContext: JsonContext, body: NodeSeq, attrs: ElemAttr*) : Elem

Failing that you should look at the available methods in SHtml (jsonForm would be another one to look at) and see which one best fits your use case. I would encourage you to pick up a copy of Lift in Action which discusses how the function binding works, as I think you have miss-understood it in relation to the request/response cycle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文