上传并通过jsonp请求将文件发送到跨域

时间:2018-02-01 09:52:46

标签: javascript jsonp

我必须使用输入标记<input type="file">上传文件,并将文件或文件内容发送到其他域(跨域)。我可以使用javascript jsonp请求将文件发送到十字架域名? 必须使用纯JavaScript而非jqueryangularjs

jsonp是将数据(文件对象/文件内容)发送到跨域的最佳方法吗?

这是我的代码

<input type='file' id='files' name='myfiles'/>

function handleFileSelect(evt) {
    var files = evt.target.files; // FileList object
    console.log(files)
    var s = document.createElement("script");
    s.src = "http://192.168.100.115:8700/is_selected/";
    document.body.appendChild(s);

  }

  document.getElementById('files').addEventListener('change', handleFileSelect, false);

0 个答案:

没有答案