Editar

getWebResourceUrl (Client API reference)

Returns the relative URL with the caching token for the specified web resource.

Syntax

var globalContext = Xrm.Utility.getGlobalContext();
globalContext.getWebResourceUrl(webResourceName);

Parameters

Name Type Required Description
webResourceName String Yes Name of the web resource.

Return Value

Type: String

Description: The relative URL, including the caching token, for the specified web resource.

Note

If you:

  • Use this method every time, you will have the latest version of the web resource and it will be cached for up to one year.
  • Use this method once and save the URL, you will get the version, which was current at the time the URL was built, for next one year.
  • Don't use this method and construct the URL yourself, the item returned won't be cached.

Example

var globalContext = Xrm.Utility.getGlobalContext();
globalContext.getWebResourceUrl("sample_webResource1.js");

This will return the web resource URL with the caching token:

/%7b637199221580014143%7d/webresources/sample_webResource1.js

Xrm.Utility.getGlobalContext