Sono nuovo su react.js, ho implementato un componente in cui sto recuperando i dati dal server e lo uso come,
CallEnterprise:function(TenantId){
fetchData('http://xxx.xxx.xx.xx:8090/Enterprises?TenantId='+TenantId+' &format=json').then(function(enterprises)
{
EnterprisePerspectiveActions.getEnterprise(enterprises);
}).catch(function()
{
alert("There was some issue in API Call please contact Admin");
//ComponentAppDispatcher.handleViewAction({
// actionType: MetaItemConstants.RECEIVE_ERROR,
// error: 'There was a problem getting the enterprises'
//});
});
},
Voglio memorizzare l'URL nel file di configurazione, quindi quando l'ho distribuito sul server di test o sulla produzione devo solo cambiare l'URL sul file di configurazione non nel file js ma non so come utilizzare il file di configurazione in react.js
Qualcuno può guidarmi per favore come posso raggiungere questo obiettivo?