मैं प्रतिक्रिया पर नया हूं। क्या मैंने एक घटक को लागू किया है जिसमें मैं सर्वर से डेटा प्राप्त कर रहा हूं और इसका उपयोग करता हूं, जैसे:
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 स्टोर करना चाहता हूं, इसलिए जब मैंने इसे टेस्टिंग सर्वर पर या प्रोडक्शन पर तैनात किया, तो मुझे बस config फाइल में url को js फाइल में नहीं बदलना होगा, लेकिन मुझे नहीं पता कि कैसे कॉन्फ़िगरेशन फाइल को प्रतिक्रिया में उपयोग किया जाए। js
क्या कोई मुझे मार्गदर्शन दे सकता है कि मैं इसे कैसे प्राप्त कर सकता हूं?