0

我正在尝试围绕我的 AjaxRequest 类编写一个测试套件,但是当我尝试检查请求正文时,我得到了这个测试失败

FAILED TESTS:
AjaxRequest
  #POST
  ✖ attaches the body to the response
    PhantomJS 1.9.8 (Mac OS X 0.0.0)
  Expected Object({ example: [ 'text' ] }) to equal Object({ example: 'text' }).

这是单元测试的相关位:

      req = new AjaxRequest().post('http://example.com')
            .body({
                example: 'text'
            }).run();

run()是发出ajax请求的方法

var options = {
        url: this._url,
        method: this._method,
        type: 'json',
        data: this._body
    };

    return when(reqwest(options));

我正在使用reqwest发出 ajax 请求。

有人可以指出为什么在 json 正文中['text']发送请求时会期待它吗?'text'

谢谢!

4

1 回答 1

0

改变 AjaxRequest 的实现解决了这个问题。

这是run使用的新实现XMLHttpRequest

run () {
    var req = new XMLHttpRequest();

    req.open(this._method, this._url, true);

    req.send(JSON.stringify(this._body));

    return when.promise((resolve, reject) => {
        req.onload = function() {
            if (req.status < 400) {
                var param = req.response;
                try { param = JSON.parse(param) } catch (e) { };
                resolve(param);
            } else {
                reject(new RequestError(req.statusText, req.status));
            }
        };
    });
}

这不仅摆脱了额外的库,而且还可以更好地控制何时拒绝请求承诺。

于 2015-08-12T12:35:40.007 回答