استفاده از fetch برای دریافت اطلاعات از سرور
npm i fetch
import {fetchUrl} from 'fetch' import Qs from 'qs'
.....
fetchUrl( config.baseUrl + url , { headers : {your headers} }, (err, meta, body)=>{ // call back func // console.log('err', err) // console.log('meta', meta) // console.log('body', JSON.parse(body.toString())) if(meta?.status >= 200 && meta.status<= 300 ){ callback(JSON.parse(body.toString())) // have result } else{ callback(undefined, JSON.parse(body.toString())) // have error } } )