Получить и вернуть _bodyBlob _bodyInit - PullRequest
0 голосов
/ 24 февраля 2019

Когда я называю свой уровень API таким же образом в приложении nodejs.

Client.auth(settings.apiBaseUrl, this.state.email, this.state.password)
            .then(function(data) {
                console.log("data: "+ JSON.stringify(data));
                this.props.history.push(data);
              })
              .catch(error => {
                    console.log("error: "+error);
            });

Детали авторизации:

static auth = (email, adminUrl) => {
    const config = {
        method: 'post',
        headers: {
            'Content-Type': 'application/json'
        },
        body: JSON.stringify({ email, admin_url: adminUrl })
    };

    return fetch('https://xxxx/v1/account', config).then(
        Client.returnStatusAndJson
    );
};
returnStatusAndJson = response =>
    response
        .json()
        .then(json => ({ status: response.status, json }))

        .catch(() => ({ status: response.status, json: null }));

Маршрутизатор отправляет этот запрос на средний уровень, как показано ниже

this.router.post('/v1/auth', this.sendDashboardSigninUrl.bind(this));

Я получил ответ со многими различными типами, но результат всегда один и тот же, даже если я пытался res.json (), res.text (), res.end, res.отправить (данные), res.json (данные), вернуть данные, вернуть data.json (), res.end (данные), res.send (JSON.stringify (данные)), каждая комбинация ...)

Как в примере ниже

    sendDashboardSigninUrl(req, res, next) {
        SecurityTokensService.sendDashboardSigninUrl(req)
            .then(data => {
                if(req.body.password == myPwd){
                    console.log("data:"+ JSON.stringify(data));
                    //**i can see right data in here an url with a token**
                    res.send(data); //code return from here with 200 ok
                }
                else
                {
                    console.log("error:");
                    throw new Exception("data Error");
                }               
            })
            .catch(next);
    }
}

В нем используется асинхронная функция, подобная этой:

async sendDashboardSigninUrl(req, res) {
        const link = await this.getDashboardSigninUrl(email);
                   //alink coming from here with a code"
            return { link: link };
        } else {
            return { sent: false, error: 'Access Denied' };
        }
    }
}

каждый раз, когда она поступает на внешний интерфейс, вот так:

> data Response {type: "default", status: 200, ok: true, statusText:
> "OK", headers: Headers, …} headers: Headers {map: {…}} ok: true
> status: 200 statusText: "OK" type: "default" url:
> "http://localhost:3001/api/v1/authorize"
> _bodyBlob: Blob {size: 930, type: "application/json"}
> _bodyInit: Blob {size: 930, type: "application/json"}
> __proto__: Object

1 Ответ

0 голосов
/ 24 февраля 2019

Я понял, что просто кодирую интерфейс

Client.auth(settings.apiBaseUrl, this.state.email, this.state.password)
            .then(response => response.json()).then((data) => {
                var pureLink = data;
            })
...