ember fetch 如何执行ajax 查询?

How does ember fetch perform ajax query?

我正在使用 ember-fetch 并且从它 source code 我无法弄清楚它在哪里进行了 XHR 调用。

换句话说,它在哪里调用window.XMLHttpRequest

来自 jQuery 背景,我也在尝试弄清楚我们在哪里可以将 processData = false 等选项指定为 seen in here,但这次我想在 ember-fetch-方式。

In another word, where does it call window.XMLHttpRequest?

简短的回答是:不是。 Its repo says “HTML5 fetch polyfill from github wrapped and bundled for ember-cli users”, so it does what is says on the tin, it uses the Fetch API 相反。

(…) I'm also trying to figure out where can we specify option such as processData = false

是的,如果我理解正确的话,fetch 默认情况下不会处理它获取的数据,这就是为什么你会看到这么多类似 response.json() 的例子(比如 repo you linked).