我想通过一个请求将图像和JSON发送到服务器。这是我的JS代码,我想与Angular一起发送。
function onSubmit(){
var formData = new FormData();
formData.append("file", document.forms["userForm"].file.files[0]);
formData.append('user', new Blob([JSON.stringify({
"firstName": document.getElementById("firstName").value,
"lastName": document.getElementById("lastName").value})],
{type: "application/json"}));
var boundary=Math.random().toString().substr(2);
fetch('/api/cateogry/saveCategory', {
method: 'post',
body: formData}).then(function(response) {
if (response.status !== 200) {
alert("There was an error!");
} else {
alert("Request successful");
}
}).catch(function(err) {
alert("There was an error!");
});;
}
答案 0 :(得分:0)
您可以将图像作为String发送,使用Base64将图像转换为String,然后在Json中发送。 看看这个: Converting an image to base64 in angular 2