本文介绍了在提升中生成JS时是否存在JsAnd或JsOr?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道这是一个新手问题...

I know this is very much a noob question...

我看到了Lift提供的实用程序方法来生成javascript命令.我想做的等同于:

I see lift provides utilities methods to generate javascript commands. I want to do the equivalent of:

JsIf((JsEq(ValById("disable-production"),JsTrue) || JsEq(ValById("disable-production"), JsTrue) , {
        Alert("Do something interesting...")
      })

谢谢.

推荐答案

是的,:

import net.liftweb.http.js.JsCmds._
import net.liftweb.http.js.JE._

val conditional = JsIf(
  JsOr(
    JsEq(ValById("disable-production"), JsTrue),
    JsEq(ValById("disable-something-else"), JsTrue)
  ),
  Alert("Do something interesting...")
)

这篇关于在提升中生成JS时是否存在JsAnd或JsOr?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 05:40