作者:方雷
个人博客:http://blog.chargingbunk.cn/
微信公众号:rayson_666(Rayson开发分享)
个人专研技术方向:
- 微服务方向:springboot, springCloud,Dubbo
- 分布式/高并发: 分布式锁, 消息队列RabbitMQ
- 大数据处理: Hadoop, spark, HBase等
常用到这些代码, 就在此记录一下, 方便以后查阅
function getRootPath_dc() {
var pathName = window.location.pathname.substring(1);
var webName = pathName == '' ? '' : pathName.substring(0, pathName.indexOf('/'));
if (webName == "") {
return window.location.protocol + '//' + window.location.host;
}
else {
return window.location.protocol + '//' + window.location.host + '/' + webName;
}
}
------来源网络