如何存储配置文件并使用 React 读取它
2022-08-30 04:53:56
我是 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文件中,但我不知道如何在react中使用配置文件.js
任何人都可以指导我如何实现这一目标?