有条件地在 XML 文本中包含属性

发布于 2024-11-26 21:28:03 字数 406 浏览 0 评论 0原文

我有以下 XML 文字:

<input type='radio'
       name={funcName}
       value='true' />

如果 cond 为 true,我想包含 checked='checked'

我已经尝试过这个,

<input type='radio'
       name={funcName}
       value='true'
       { if (cond) "checked='checked'" else "" } />

但它不起作用。

(我真的希望避免重复整个标签。)

I have the following XML literal:

<input type='radio'
       name={funcName}
       value='true' />

I'd like to include checked='checked' if cond is true.

I've tried this,

<input type='radio'
       name={funcName}
       value='true'
       { if (cond) "checked='checked'" else "" } />

but it doesn't work.

(I'd really like to avoid repeating the whole tag.)

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

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

发布评论

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

评论(3

厌倦 2024-12-03 21:28:03

Option 也可以工作,这可以减少不必要的 null 使用:

scala> val checked:Option[xml.Text] = None
checked: Option[scala.xml.Text] = None

scala> val xml = <input checked={checked} />
xml: scala.xml.Elem = <input ></input>

Option also works, which reduces unnecessary use of null:

scala> val checked:Option[xml.Text] = None
checked: Option[scala.xml.Text] = None

scala> val xml = <input checked={checked} />
xml: scala.xml.Elem = <input ></input>
豆芽 2024-12-03 21:28:03

不管你相信与否,你可以这样做:

<input type='radio'
       name={funcName}
       value='true'
       checked={ if (cond) "checked" else null } />

这是 Scala 的黑暗部分之一,实际上使用了 null

澄清一下,它完全符合您的要求:如果 condfalse,则 input 将有 no checked 属性。

Believe it or not, you can do it like this:

<input type='radio'
       name={funcName}
       value='true'
       checked={ if (cond) "checked" else null } />

This is one of the dark parts of Scala where null actually gets used.

Just to make clear, it does exactly what you want: if cond is false, then input will have no checked attribute.

奈何桥上唱咆哮 2024-12-03 21:28:03

如果您只想在选中时添加属性,可以在使用 Scala XML API 后添加:

import scala.xml._

val snippet = {

  val x = <input type='radio'
                 name={funcName}
                 value='true' />

  if( cond ) {
    x % new UnprefixedAttribute("checked","checked",Null)
  } else x

}

If you want to add the attribute only when checked, you can add it after using Scala XML API:

import scala.xml._

val snippet = {

  val x = <input type='radio'
                 name={funcName}
                 value='true' />

  if( cond ) {
    x % new UnprefixedAttribute("checked","checked",Null)
  } else x

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