POST请求导致我的站点URL更改为POST参数。

时间:2017-11-05 06:27:56

标签: reactjs post react-redux

我正在使用用户名和密码对auth api进行POST请求,并期待响应中有令牌。

fetch('https://auth.entranceplus.in/auth', {
                credentials: 'omit',
                method: 'POST',
                mode: 'cors',
                body: JSON.stringify({
                    "username": this.userName.value,
                    "password": this.password.value
                }),
                headers: new Headers({
                    'Access-Control-Allow-Origin': '*',
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                    'Data-Type': "json"
                })
            }).then(function (response) {
                if (response.status === 200) {
                    return response.json();
                } else if (response.status === 503) {
                    this.setErrorMessage('Failed to check-out license');
                } else {
                    this.setErrorMessage('Incorrect Username or Password');
                }
            }.bind(this)).then(json => {
                localStorage.setItem('username', this.userName.value);
                localStorage.setItem('accesstoken', json.access_token);
            });

如图所示,请求网址为http://localhost:3000/?username=dfbfdjhgfk&password=76895jfjg

enter image description here

我的问题是为什么请求没有发布到https://auth.entranceplus.in/auth

0 个答案:

没有答案