欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前端开发-日常开发沉淀

程序员文章站 2022-07-09 15:06:31
获取浏览器: window.location.protocol 获取请求地址:window.location.host, 项目开发实际用途:var hostServer = window.location.protocol + '//' + window.location.host;就可以实现代码部 ......

获取浏览器: window.location.protocol

获取请求地址:window.location.host,

项目开发实际用途:var hostserver = window.location.protocol + '//' + window.location.host;就可以实现代码部署在那里就调用哪里的后台服务;

console.log(window.location.protocol + '//' + window.location.host);就可以输出请求的地址了,然后在通过配置的方式就可以完全区分开开发环境和部署环境

前端写配置文件方式如下

前端配置方式写link路径
window.global_config = { link: { toadmin:'http://xxxxx.com' } };
取的方式:window.global_config.link.toadmin,

  

前端开发-日常开发沉淀