mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-09 09:12:06 +08:00
Summary:
With this in place, it's possible to upload a picture from the `CameraRoll` to Parse, for instance:
xhr = new XMLHttpRequest();
xhr.onload = function() {
data = JSON.parse(xhr.responseText);
var parseFile = new Parse.File(data.name);
parseFile._url = data.url;
callback(parseFile);
};
xhr.setRequestHeader('X-Parse-Application-Id', appID);
xhr.setRequestHeader('X-Parse-JavaScript-Key', appKey);
xhr.open('POST', 'https://api.parse.com/1/files/image.jpg');
// assetURI as provided e.g. by the CameraRoll API
xhr.send(new NativeFile(assetURI));
Closes https://github.com/facebook/react-native/pull/1357
Github Author: Philipp von Weitershausen <philikon@fb.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule XMLHttpRequest
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var RCTDataManager = require('NativeModules').DataManager;
|
|
|
|
var crc32 = require('crc32');
|
|
|
|
var XMLHttpRequestBase = require('XMLHttpRequestBase');
|
|
|
|
class XMLHttpRequest extends XMLHttpRequestBase {
|
|
|
|
sendImpl(method: ?string, url: ?string, headers: Object, data: any): void {
|
|
if (typeof data === 'string') {
|
|
data = {string: data};
|
|
}
|
|
RCTDataManager.queryData(
|
|
'http',
|
|
{
|
|
method,
|
|
url,
|
|
data,
|
|
headers,
|
|
},
|
|
// TODO: Do we need this? is it used anywhere?
|
|
'h' + crc32(method + '|' + url + '|' + data),
|
|
(result) => {
|
|
result = JSON.parse(result);
|
|
this.callback(result.status, result.responseHeaders, result.responseText);
|
|
}
|
|
);
|
|
}
|
|
|
|
abortImpl(): void {
|
|
console.warn(
|
|
'XMLHttpRequest: abort() cancels JS callbacks ' +
|
|
'but not native HTTP request.'
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = XMLHttpRequest;
|