最佳答案
我是 react.js 的新手,我已经实现了一个组件,其中我从服务器获取数据并使用它,
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'
//});
});
},
我想把 Url 存储在配置文件中,这样当我在测试服务器或生产环境中部署它时,我只需要改变配置文件中的 Url,而不是 js 文件中的 Url,但是我不知道如何在 react.js 中使用配置文件
Can anyone please guide me how can I achieve this ?