如何在本地响应中打印响应消息

时间:2019-02-26 23:27:28

标签: reactjs react-native axios response native

api正在工作 我只想将回复打印给用户 我正在使用Axios 这是我的代码

      axios({
        url: 'https://b-wire.co/realEstateApi/api/v1/user/create',
        method: 'post',

        data: formdata,
        headers: {
          "Content-Type": "multipart/form-data; charset=utf-8;"
        }
      })
      .then(function (response) {
        console.log(response);
        this.setState({
            error_message:response
        })
      })
      .catch(function (error) {
        console.log(error);
      });

0 个答案:

没有答案