获取项目整体URL前缀的方法,用于与后台通信

var stargis={};

stargis.platName = "Platform";//项目名

stargis.webServicePath = window.location.href.substring(0, window.location.href.indexOf(stargis.platName))+stargis.platName;

至此得到类似http://.....的格式,之后加上 controller中的路径就可以对应使用后台方法

例如

abc = stargis.webServicePath + "/public/log/insert";

你可能感兴趣的:(获取项目整体URL前缀的方法,用于与后台通信)