React Native網路請求(Frisbee網路框架)
阿新 • • 發佈:2019-02-03
Frisbee介紹
使用
下載
nmp方式:命令列執行
npm install --save frisbee
引入
在JavaScript檔案中引用
import Frisbee from 'frisbee'
使用
/**
* 先抽取成全域性變數
* 網路工具
**/
const api = new Frisbee({
baseURI: '你的url根地址',
headers: {
'Accept': 'application/json',
'Content-Type' : 'application/json',
'Accept-Charset': 'utf-8',
'Method': 'GET',
}
let data = await api.get('具體的url地址');
//data就是方法返回的資料物件,body屬性就是具體的json內容
console.log(data.body);
});