为什么要在发布方法中获取状态代码204?

时间:2019-10-23 13:05:54

标签: post fetch http-status-code-204

从react-native代码中,我得到204。

以下是代码:

addNotifier = () => {

      NetInfo.isConnected.fetch().then(async (isConnected) => {
          if(isConnected)
          {
            var phone = await this.getData('phone');
            fetch('http://securitynotifier.iatlbd.com/api/individual/addNotifier/', {
                method: 'POST',
                headers: {
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                },
                body: JSON.stringify({
                    phoneNumber: phone,
                    notifier: this.state.newNumber,
                })

            })
            .then((res) => {
                console.log('Add notifier status: ', res.status);
            })
          }
          else alert('Please turn on Internet connection')
      })
      console.log(this.state.numbers);
    }

我是本机反应的新手。我非常需要您的帮助。

1 个答案:

答案 0 :(得分:1)