Skip to content
Advertisement

How to avoid having multiple methods with different arguments for url construction

How to avoid having multiple methods with different arguments for url construction. I would like to optimize this further

JavaScript

Advertisement

Answer

One way to create an object called Endpoint which holds the required values:

JavaScript

Then you can have only one invUrl method to which id and action can be passed and Endpoint object can be constructed. This can be passed to endpointUrl method:

JavaScript

Then, endpointUrl method can be modified as:

JavaScript
Advertisement