Suche…


Einführung

Scala.js ist eine Schnittstelle von Scala , die JavaScript kompiliert, das am Ende außerhalb der JVM . Es hat Vorteile wie starke Typisierung, Code-Optimierung zur Kompilierzeit und vollständige Interoperabilität mit JavaScript-Bibliotheken.

console.log in Scala.js

println("Hello Scala.js") // In ES6: console.log("Hello Scala.js");

Fettpfeilfunktionen

val lastNames = people.map(p => p.lastName)
// Or shorter:
val lastNames = people.map(_.lastName)

Einfache Klasse

class Person(val firstName: String, val lastName: String) {
  def fullName(): String =
    s"$firstName $lastName"
}

Sammlungen

val personMap = Map(
  10 -> new Person("Roger", "Moore"),
  20 -> new Person("James", "Bond")
)
val names = for {
  (key, person) <- personMap
  if key > 15
} yield s"$key = ${person.firstName}"

DOM manipulieren

import org.scalajs.dom
import dom.document

def appendP(target: dom.Node, text: String) = {
  val pNode = document.createElement("p")
  val textNode = document.createTextNode(text)
  pNode.appendChild(textNode)
  target.appendChild(pNode)
}

Verwendung mit SBT

Sbt-Abhängigkeit

libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "0.9.1" // (Triple %%%)

Laufen

sbt run

Laufen mit kontinuierlicher Kompilierung:

sbt ~run

In eine einzige JavaScript-Datei übersetzen:

sbt fastOptJS


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow