RN发送http请求例子

Posted 天道酬勤!!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RN发送http请求例子相关的知识,希望对你有一定的参考价值。

发送http请求

   let map = {
      method: ‘post‘,
      headers: {
        token: ‘‘,
        ‘Content-Type‘: ‘application/json‘
      },
      body: ‘‘
    }
    fetch(‘http://xxxx‘, map).then(
      (result) => {
        result.json().then(
          (obj) => {
            console.log(obj);
          }
        ).catch(
          (error) => {
            console.log(error);
          }
          )
      }
    ).catch(
      (error) => {
        console.log(error);
      }
      );

 日期选择器

let option={date:new Date(),minDate:new Date(2012,1,28),maxDate:new Date(2020,1,28)};
DatePickerandroid.open(option).then(
      (result) => {
    if(result.action===DatePickerAndroid.dismissedAction){
      console.log(‘未选择‘);
    }else
    {
      console.log(result);
    }
      }
    ).catch(
      (error) => {
        console.log(error);
      }
      );

 时间选择

let option={hour:13,minute:11};
TimePickerAndroid.open(option).then(
      (result) => {
    if(result.action===TimePickerAndroid.dismissedAction){
      console.log(‘未选择‘);
    }else
    {
      console.log(result);
    }
      }
    ).catch(
      (error) => {
        console.log(error);
      }
      );

 

以上是关于RN发送http请求例子的主要内容,如果未能解决你的问题,请参考以下文章

求教golang中http发送post请求gb2312编码的解决方案

使用PHP中的curl发送请求

BitTorrent:发送请求的最佳速率?

转:PHP中的使用curl发送请求(GET请求和POST请求)

简单的 Javascript http 请求片段但不起作用

我无法使用 RegisterActivityForResult 发送请求代码