axios post请求返回翼形符号

cx6n0qe3  于 2023-01-05  发布在  iOS
关注(0)|答案(1)|浏览(64)

我能够成功地通过 Postman 获得请求,但是当我使用axios来处理我的post请求时,我得到了一个状态200,但返回的数据只是翼丁符号。
下面是我编写axios代码

const configAxios = {
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded'
        }
    };

axios
        .post(url + 'connect/token', params, configAxios)
        .then((response) => {
            console.log(response.data);
        })
        .catch((error) => {
            console.log(error);
        });

下面是返回值。

���������⌂�N▼~����O�����ӟ�Ƀ����w~������͗{�������vwg�h~v����{/⌂zQ�^�O�=�⌂p�����_�
V��O�_<]>���☼��|q��ᓋ��Y�����ߙ�8}����꧿]����^�^���}^���ç�W_�{��էg�Κ�>ث▬?�����^��N�^����I���D�;����I5����⌂�t6�>x��↨U��‼m����d{y���⌂�������~ж_�>;/�/>⌂�{7�v�[⌂�ݫ����>�����f�s���>,�]}4�(⌂�*���♂��{���>b�����UN|�$�꼦vʹ�☼�>}v�*~�Wy6���?��§('♥

这是我从 Postman 那里得到的预期结果

{
    "access_token": {access_token},
    "expires_in": 3600,
    "token_type": "Bearer",
    "scope": "api_read"
}
iqjalb3h

iqjalb3h1#

在标题中添加{ 'accept-encoding': '*' }

相关问题