微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

eBay jsonpipe

程序名称:eBay jsonpipe

授权协议: MIT

操作系统: 跨平台

开发语言: JavaScript

eBay jsonpipe 介绍

jsonpipe 是一个轻量级的 AJAX 客户端,用于处理压缩(chunked)的 JSON 响应信息。

示例代码

var jsonpipe = require('jsonpipe');
/**
 * @param {String} url A string containing the URL to which the request is sent.
 * @param {Object} url A set of key/value pairs that configure the Ajax request.
 * @return {XMLHttpRequest} The XMLHttpRequest object for this request.
 * @method flow
 */
jsonpipe.flow('http://api.com/items?q=batman', {
    "delimiter": "", // String. The delimiter separating valid JSON objects; default is "\n\n"
    "success": function(data) {
        // Do something with this JSON chunk
    },
    "error": function(errorMsg) {
        // Something wrong happened, check the error message
    },
    "complete": function(statusText) {
        // Called after success/error, with the XHR status text
    },
    "timeout": 3000, // Number. Set a timeout (in milliseconds) for the request
    "method": "GET", // String. The type of request to make (e.g. "POST", "GET", "PUT"); default is "GET"
    "headers": { // Object. An object of additional header key/value pairs to send along with request
        "X-Requested-With": "XMLHttpRequest"
    },
    "data": "" // String. A serialized string to be sent in a POST/PUT request
});

eBay jsonpipe 官网

https://github.com/eBay/jsonpipe

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐