如何使用 scala.js 读取文本文件?
How can I read a text file with scala.js?
基本上我想弄清楚我需要传递给 onload()
方法的内容
def selectedFile(e: ReactEventI) = {
val reader = new dom.FileReader()
reader.readAsText(e.currentTarget.files.item(0))
reader.onload(
)
}
您可以将 lambda 分配给 onload
处理程序:
reader.onload = (e: UIEvent) => {
// Cast is OK, since we are calling readAsText
val contents = reader.result.asInstanceOf[String]
println(contents)
}
地道的 Scala,带有错误处理
我更喜欢使用模式匹配和 map
,而不是使用回调:
def printFileContent(file: dom.File) =
readTextFile(file).map {
case Right(fileContent) => println(s"File content: $fileContent")
case Left(error) => println(s"Could not read file ${file.name}. Error: $error")
}
代码:
/** In the future, returns either the file's content or an error,
if something went wrong */
def readTextFile(fileToRead: dom.File): Future[Either[DOMError, String]] = {
// Used to create the Future containing either the file content or an error
val promisedErrorOrContent = Promise[Either[DOMError, String]]
val reader = new FileReader()
reader.readAsText(fileToRead, "UTF-8")
reader.onload = (_: UIEvent) => {
val resultAsString = s"${reader.result}"
promisedErrorOrContent.success(Right(resultAsString))
}
reader.onerror = (_: Event) => promisedErrorOrContent.success(Left(reader.error))
promisedErrorOrContent.future
}
基本上我想弄清楚我需要传递给 onload()
方法的内容
def selectedFile(e: ReactEventI) = {
val reader = new dom.FileReader()
reader.readAsText(e.currentTarget.files.item(0))
reader.onload(
)
}
您可以将 lambda 分配给 onload
处理程序:
reader.onload = (e: UIEvent) => {
// Cast is OK, since we are calling readAsText
val contents = reader.result.asInstanceOf[String]
println(contents)
}
地道的 Scala,带有错误处理
我更喜欢使用模式匹配和 map
,而不是使用回调:
def printFileContent(file: dom.File) =
readTextFile(file).map {
case Right(fileContent) => println(s"File content: $fileContent")
case Left(error) => println(s"Could not read file ${file.name}. Error: $error")
}
代码:
/** In the future, returns either the file's content or an error,
if something went wrong */
def readTextFile(fileToRead: dom.File): Future[Either[DOMError, String]] = {
// Used to create the Future containing either the file content or an error
val promisedErrorOrContent = Promise[Either[DOMError, String]]
val reader = new FileReader()
reader.readAsText(fileToRead, "UTF-8")
reader.onload = (_: UIEvent) => {
val resultAsString = s"${reader.result}"
promisedErrorOrContent.success(Right(resultAsString))
}
reader.onerror = (_: Event) => promisedErrorOrContent.success(Left(reader.error))
promisedErrorOrContent.future
}