return fetch(url, {
credentials: 'same-origin',
...options
})
.then(response => response.json())
.then(function*(response) {
console.log("httpStatusCode", response.httpStatusCode)
})
以上可能吗?当回调函数是生成器时,我没有得到控制台输出,这意味着控件没有传递给回调函数(生成器)。我想这样做的真正原因是我必须使用上述回调中的 redux-saga 的 'call' 辅助函数调用另一个 fetch 请求,该回调只能从生成器函数调用。