我正在通过构建图像共享webapp来学习Scalajs。 在表单中,我有一个经典的文件输入标记,并希望通过HTTP Post请求使用Ajax和jQuery将其上传到远程服务器。
这是html:
<input id="postTitle" class="form-control" placeholder="Title" type="text" aria-describedby="basic-addon1">
<input id="file" class="form-control" placeholder="Browse" type="file" aria-describedby="basic-addon1">
<input id="tags" class="form-control" placeholder="Tags in format ['tag 1', 'tag 2',...]" type="text">
<button id="postButton" class="btn btn-success">Submit</button>
这是底层的Scala代码:
lazy val submitElement = jQuery("#postButton")
jQuery(() => {
submitElement.click {
(_: JQueryEvent) => {
dom.ext.Ajax.post(
url = [server_url],
data = ???, // <-- How do I get the file?
headers = Map("Content-Type" -> "application/json")
).foreach { xhr =>
if (xhr.status == 200) {
val x = JSON.parse(xhr.responseText)
println(x)
}
}
}
}
})
非常感谢任何帮助
答案 0 :(得分:1)
请参阅Scalajs Showcase Ajax example以了解scalajs中的post方法。
扩展上面的例子,你可以编写postAsFormData方法并将上传的文件作为formData传递。
def postAsFormData(url: String,
data: FormData,
timeout: Int = 0,
headers: Map[String, String] = Map.empty,
withCredentials: Boolean = false) = {
ajax.post( url, InputData.formdata2ajax(data), timeout,headers, withCredentials, "")
}
将文件输入传递为
val formData= new FormData()
formData.append("file",$("#fileInput").prop("files").item(0))
然后调用ajax postAsFormData方法。
答案 1 :(得分:0)
我使用FormData Api。它正在使用scalajs https://github.com/scalajs-io/form-data
的库lazy val submitElement = jQuery("#postButton")
jQuery(() => {
submitElement.click {
(_: JQueryEvent) => {
val file_data = jQuery('#file').prop("files")(0);
val form_data = FormData();
form_data.append('file', file_data);
dom.ext.Ajax.post(
url = [server_url],
data = form_data,
headers = Map("Content-Type" -> "application/json")
).foreach { xhr =>
if (xhr.status == 200) {
val x = JSON.parse(xhr.responseText)
println(x)
}
}
}
}
})