Ask a question about the jquery window object

I look at a html ui project with items such as:

 var apiserver = window["apiserver"];
 url = apiserver + "filterUrlController/getUrlData";
 

I searched the whole project and couldn"t find the value of window ["apiserver"]. How do you understand it? After searching apiserver, we didn"t find any clues.

Feb.26,2021

is API's server in terms of its name? Have you ever tried to find


apiserver


definition according to the address of url below, which is not necessarily defined by `window ['apiserver']. It is better to search apiserver directly

.
Menu