添加没有值scalatags

时间:2016-09-27 07:22:46

标签: scala scala.js scalatags

如何创建没有值的属性。

我想创建这样的(可能无效的)html。注意ng-appng-jq - 没有值的属性。

<html ng-app ng-jq>
 ...
 ...
</html>

在scalatags中,您将从:

开始
import scalatags.JsDom.all._
html(
   //and here what?
)

1 个答案:

答案 0 :(得分:1)

import scalatags.JsDom.all._
val `ng-app` = "ng-app".attr := ""  //empty string does the job
val `ng-jq` = "ng-jq".attr := ""

html(`ng-app`, `ng-jq`)

<强>更新

在scalatags-0.6.0中,这变得更加明确:

import scalatags.JsDom.all._
val `ng-app` = attr("ng-app") := ""  //empty string does the job
val `ng-jq` = attr("ng-jq") := ""

html(`ng-app`, `ng-jq`)