fecth没有在帖子请求中发布正文

时间:2017-02-10 20:37:07

标签: javascript reactjs react-native ecmascript-6

这是我的方法,用于将登录详细信息发布到外部实时服务器。这个相同的网址在使用邮递员进行测试时有效,但使用提取会返回服务器响应并提供不完整的数据'显然是因为身体没有通过。我做错了什么..

async onRegisterPressed () {
    try {
      let response = await fetch('https://pentor-bff-ios.appspot.com/api/v1/user', {
        method: 'POST',
        mode: 'no-cors',
        headers: {
          'Accept': 'application/json',
          'Content-Type': 'application/json'
        },
        body: JSON.stringify({
          email: 'badmustaofeeq@gmail.com', // this.state.email,
          password: 'password' // this.state.password
        })
      })

      let res = await response.text()
      alert('Respose from server: ' + res)
    } catch (errors) {

    }
  }

0 个答案:

没有答案