我使用此curl命令将文件推送到Web服务器
curl -i -X POST -H 'Content-Type: application/json' -d @./mylocalfile -k https://192.168.1.10:8283/here
我想使用一个简单的网页代替我可以在其中选择mylocalfile
<html>
<body>
<input class="file" type="file" id="fafafa" name="fileupload" /><br/>
<br/>
<input type="button" value="Submit" onclick="xhrSubmit();" />
<script type="text/javascript ">
function xhrSubmit() {
var file_obj = document.getElementById('fafafa').files[0];
var fd = new FormData();
fd.append('fafafa', file_obj);
xhr = new XMLHttpRequest();
xhr.open('POST', 'https://192.168.1.10:8283/here', true)
xhr.setRequestHeader('Content-type', 'application/json');
xhr.send(fd);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
var obj = JSON.parse(xhr.responseText);
console.log(obj);
}
};
}
</script>
</body>
</html>
但是当我使用该网页作为Web服务器时,得到的响应是预期的对象或数组。
如何更改javascript代码以发送数据,例如curl命令,而将文件发布到网络服务器没有问题?
我服务器端的完全Boost异常是
Exception <unspecified file>(1): expected object or array
答案 0 :(得分:1)
您的内容类型错误。您没有将JSON发送到服务器。
尝试将内容类型设置为 application / x-www-form-urlencoded 。
答案 1 :(得分:0)
我要说的是,检查一下curl版本收到的内容。不能是application / json和文件数据。您需要multipart / form-data。
答案 2 :(得分:0)
最终,问题在于json有效负载消息和curl中的许多换行符并不在乎,而浏览器却在其中。