AMD:
require(["esri/core/urlUtils"], (urlUtils) => { /* code goes here */ });
ESM:
import * as urlUtils from "@arcgis/core/core/urlUtils.js";
Object:
esri/core/urlUtils
Since: ArcGIS Maps SDK for JavaScript 4.0
Utility methods for working with URLs.
Method Overview
Name | Return Type | Summary | Object |
---|---|---|---|
Adds the given proxy rule to the proxy rules list: | urlUtils | ||
Returns the proxy rule that matches the given URL. | urlUtils | ||
Converts the URL arguments to an object representation. | urlUtils |
Method Details
-
addProxyRule
addProxyRule(rule){Number}static
-
Adds the given proxy rule to the proxy rules list:
esriConfig.request.proxyRules
.ParametersSpecificationrule ObjectAn object specifying a URL that should use the proxy. See the object specification table below for the required properties of this object.
ReturnsType Description Number The index of the proxy rule in the esriConfig.request.proxyRules
array.- See also
-
urlToObject
urlToObject(url){Object}static
-
Converts the URL arguments to an object representation.
Parameterurl StringThe input URL.
ReturnsType Description Object Returns an object representing the URL, its parameters, and parameter values. The specification of the object is the following: Property Type Description path String The path of the given URL. query Object An object whose properties and values are the parameters and parameter values of the given URL. Examplelet myObject = urlUtils.urlToObject("http://www.myworld.com?state_name=Ohio&city_name=Akron"); // The value of my Object is... // { path: "http://www.myworld.com", query: {state_name: "Ohio", city_name: "Akron"} }