Sha256: e6422568bbc1a5f80806c7fab7c7a9f1ae5ec76b74183d117c5b39cec062405b

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 KB

Contents

class HttpRequest {
    static get(path, responseCallback) {
        const req = new HttpRequest(path, "GET", responseCallback);
        req.send();
        return req;
    }

    static post(path, params, responseCallback) {
        const req = new HttpRequest(path, "POST", responseCallback);
        req.send(params);
        return req;
    }

    constructor(path, method, responseCallback) {
        this._path = path;
        this._method = method;
        this._responseCallback = responseCallback;
    }

    send(params = null) {
        const xhr = new XMLHttpRequest();
        xhr.open(this._method, this._path);
        let json = null;
        if (params) json = JSON.stringify(params);
        xhr.addEventListener("load", (e) => {
            const res = {
                response: xhr.response,
                event: e
            };
            this._responseCallback(res);
        });
        xhr.send(json);
    }
}

class Base64 {
    static encode(obj) {
        if (typeof(obj) === "string") {
            return btoa(obj);
        } else if (obj instanceof Uint8Array || obj instanceof Uint8ClampedArray) {
            return btoa(String.fromCharCode(...obj));
        }
    }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-dnn-1.3.0 examples/judge-number/public/httpRequest.js
ruby-dnn-1.2.3 examples/judge-number/public/httpRequest.js
ruby-dnn-1.2.2 examples/judge-number/public/httpRequest.js
ruby-dnn-1.2.1 examples/judge-number/public/httpRequest.js
ruby-dnn-1.2.0 examples/judge-number/public/httpRequest.js
ruby-dnn-1.1.6 examples/judge-number/public/httpRequest.js