我想做一个post请求,使用同构fetch传递一些凭证。这是我现在的密码:

export default function fetchJson(url: string, options: any) {
  options.headers = (<any>Object).assign({
    'Accept': 'application/json',
    'Content-Type': 'application/json'
  }, options.headers);
  return fetch(url, options)
    .then(checkStatus)
    .then(parseJSON);
}

export function fetchLogs(dispatch_ok: any, dispatch_error: any) {
      var URL = "http://server_address:8080/api/getlogs/";
      return fetchJson(URL, {
                       method: 'get',
                       credentials: 'include',
                       headers: {
                            Authorization: 'Basic '+window.btoa('user:passwd'),
                       }
             }).then((data: any) => {
                 if (data.results.length != 0) {
                     dispatch_ok(data.results);
                 } else {
                     dispatch_error("No logs could be retrieved");
                 }
             }).catch((error: any) => {
                 dispatch_error(error.message);
             });
}

此代码重定向到登录页时不起作用。你知道怎么做吗?

最佳答案

具有同构获取的基本身份验证
你的密码就可以了。也就是说,它可以很好地发布授权头。
更多
重定向逻辑很可能被破坏。

关于javascript - 具有同构提取的基本身份验证,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43850729/

10-11 23:53