如何创建没有值的属性。
我想创建这样的(可能无效的)html。注意ng-app
和ng-jq
- 没有值的属性。
<html ng-app ng-jq>
...
...
</html>
在scalatags中,您将从:
开始import scalatags.JsDom.all._
html(
//and here what?
)
答案 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`)