从chrome扩展中上传到php $ _FILE [英] upload to php $_FILE from chrome extension

查看:67
本文介绍了从chrome扩展中上传到php $ _FILE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试通过POST将图片上传到一个网站,我无法修改其来源。

I'm trying to upload an image via POST with javascript to a site that I can't modify the source of.

该页面的表单允许你要上传图片:

< form enctype =multipart / form-dataaction =/ u.phpmethod =post>
< input name =filetype =file> < input type =submitvalue =Upload File>
< / form>

The page has a form that allows you to upload images:
<form enctype="multipart/form-data" action="/u.php" method="post"> <input name="file" type="file"> <input type="submit" value="Upload File"> </form>

我希望能够用JavaScript上传图片,但我无法获取任何内容,我不知道这是甚至可能...

I want to be able to upload images with javascript but I can't get anything to work, I'm not sure if this is even possible...

到目前为止我的JS:


file = document.getElementById('fileinput').files[0];
r = new FileReader();
r.onloadend = doUpload;
r.readAsBinaryString(file)

function doUpload(el){
    file = el.target.result;
XMLHttpRequest.prototype.sendAsBinary = function(string) {
    var bytes = Array.prototype.map.call(string, function(c) {
      return c.charCodeAt(0) & 0xff;
    });
    this.send(new Uint8Array(bytes).buffer);
  };
        var xhr = new XMLHttpRequest();
  xhr.open('POST', 'http://upload.domain.com/u.php', true);
  var boundary = 'ohaiimaboundary';
  xhr.setRequestHeader(
    'Content-Type', 'multipart/form-data; boundary=' + boundary);
  xhr.sendAsBinary([
    '--' + boundary,
    'Content-Disposition: form-data; name="file"; filename="test.jpg"',
    'Content-Type: multipart/form-data',
    '',
    file,
    '--' + boundary + '--'
  ].join('\r\n'));

}

感谢



编辑:
想通了(png是硬编码的)



Thanks

figured this one out, kind of, this should work with a little modification (png is hardcoded in)


function doUpload(fl){
    var file = fl.target.result;
    XMLHttpRequest.prototype.sendAsBinary = function(datastr) {
            var bb = new BlobBuilder();
            var data = new ArrayBuffer(1);
            var ui8a = new Uint8Array(data, 0);
            for (var i in datastr) {
                    if (datastr.hasOwnProperty(i)) {
                            var chr = datastr[i];
                            var charcode = chr.charCodeAt(0)
                            var lowbyte = (charcode & 0xff)
                            ui8a[0] = lowbyte;
                            bb.append(data);
                    }
            }
            var blob = bb.getBlob();
            this.send(blob);
    }
    var xh = new XMLHttpRequest();
    xh.open('post', 'http://upload.domain.com/u.php', true);
    xh.onreadystatechange = function(){
        if(this.readyState != 4){
            return;
        }
        else{
            console.log(this.responseText);
        }
    };
    var boundary = '--fgsfds--';
    xh.setRequestHeader('Content-Type', 'multipart/form-data; boundary=' + boundary);
    xh.sendAsBinary([
        '--' + boundary,
        'Content-Type: image/png',
        'Content-Disposition: form-data; name="file"; filename="testz.png"',
        '',
        file,
        '--' + boundary + '--',
        ''].join('\n'));
}   
function mkUpload(){
    var r = new FileReader();
    r.onloadend = doUpload;
    r.readAsBinaryString(document.upload.file.files[0]);
}

测试PHP:

test PHP:


<?
echo sprintf('<pre>%s</pre>', print_r($_FILES, true));
?>


推荐答案

其实,你试过 xhr.send(FormData)? FormData允许你
附加File对象,这些对象将被视为二进制内容,并使用
与XHR一起发送multipart / form-data。没有必要自己构建它。

Actually, have you tried xhr.send(FormData)? FormData allows you to append File objects, which will be treated as binary content and using it with XHR sends a multipart/form-data. There's no need to construct it yourself.

var formData = new FormData();

var file = document.querySelector('input[type="file"]').files[0];
if (file) {
  formData.append("file", file);
}

var xhr = new XMLHttpRequest();
xhr.open('POST', '/u.php', true);
xhr.onload = function(e) { ... };
xhr.send(formData);

这篇关于从chrome扩展中上传到php $ _FILE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆