如何在JavaScript中将Ajax转换为Fetch API?

时间:2017-10-18 06:05:59

标签: javascript jquery ajax fetch-api rivescript

所以我使用的是使用ajax的JavaScript port of RiveScript,当然我不想再使用jQuery了。只有一行ajax,我想将其更改为新的Fetch API。

**FYI: You can see the ajax code in line 1795 of the CDN.**

所以这是原始代码:

return $.ajax({
    url: file,
    dataType: "text",
    success: (function(_this) {
        return function(data, textStatus, xhr) {
            _this.say("Loading file " + file + " complete.");
            _this.parse(file, data, onError);
            delete _this._pending[loadCount][file];
            if (Object.keys(_this._pending[loadCount]).length === 0) {
                if (typeof onSuccess === "function") {
                    return onSuccess.call(void 0, loadCount);
                }
            }
        };
    })(this),
    error: (function(_this) {
        return function(xhr, textStatus, errorThrown) {
            _this.say("Ajax error! " + textStatus + "; " + errorThrown);
            if (typeof onError === "function") {
                return onError.call(void 0, textStatus, loadCount);
            }
        };
    })(this)
});

这是我到目前为止使用Fetch API尝试的内容:

return fetch(file, {
        dataType: "text"
    })
    .then(function(_this) {
        return function(data, textStatus, xhr) {
            _this.say("Loading file " + file + " complete.");
            _this.parse(file, data, onError);
            delete _this._pending[loadCount][file];
            if (Object.keys(_this._pending[loadCount]).length === 0) {
                if (typeof onSuccess === "function") {
                    return onSuccess.call(void 0, loadCount);
                }
            }
        };
    })
    .catch(function(_this) {
        return function(xhr, textStatus, errorThrown) {
            _this.say("Ajax error! " + textStatus + "; " + errorThrown);
            if (typeof onError === "function") {
                return onError.call(void 0, textStatus, loadCount);
            }
        };
    })

应用代码:

var bot = new RiveScript();

bot.loadFile("./brain.rive", loading_done, loading_error);


function loading_done (batch_num) {
    console.log("Batch #" + batch_num + " has finished loading!");

    bot.sortReplies();

    var reply = bot.reply("local-user", "Hello, bot!");
    console.log("The bot says: " + reply);
}

function loading_error (error) {
    console.log("Error when loading files: " + error);
}

使用Fetch API,我现在没有看到任何错误,但我也没有看到任何错误或成功消息。

我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:2)

fetch init object没有dataType密钥。

要表明您希望返回纯文本,请在请求中添加Accept: text/plain标头:

fetch(file, {
    headers: {
      "Accept": "text/plain"
    },
  })

fetch调用会返回一个使用Response object解析的承诺,而Response对象提供的methods解析为text,{{3 }或JSON data - 这意味着处理fetch(…)电话响应的基本形式如下:

fetch(file, {
  headers: {
    "Accept": "text/plain"
  },
})
.then(response => response.text())
.then(text => {
  // Do something with the text
})

因此,您需要在问题中使用现有代码并将其纳入该表单。