Jestem nowy na respons.js Zaimplementowałem jeden komponent, w którym pobieram dane z serwera i używam ich jak,
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'
//});
});
},
Chcę przechowywać adres URL w pliku konfiguracyjnym, więc kiedy wdrożyłem to na serwerze testowym lub na produkcji, muszę po prostu zmienić adres URL w pliku konfiguracyjnym, a nie w pliku js, ale nie wiem, jak używać pliku konfiguracyjnego wreak.js
Czy ktoś może mi pomóc, jak mogę to osiągnąć?