


Multi-domain name environment, a solution for page acquisition url_html/css_WEB-ITnose
Since the system is deployed in a distributed manner and has multiple domain names, the problem of obtaining the URL is often involved. This is a capability that needs to be provided at the system framework level. Otherwise, each module needs to find its own way to obtain the IP, which will be very confusing, and bugs will easily occur when going online
There are several main problems that need to be solved:
1. Able to automatically distinguish between development environment and production environment. For example, when deployed online, the URL may be http://www.xxx.com/svc/hello, but when developing locally it should be http://127.0.0.1/svc/hello. It cannot be written to death, otherwise development and deployment will have to be switched back and forth, which is very troublesome
2. Be able to distinguish URLs according to different services. For example, to obtain verification code services, you should call http://www.xxx.com/svc/getCode, and for WeChat-related services, you should call http://wx.xxx.com/svc/xxx
This article summarizes and shares some ideas:
Configuration file
1. The application has a corresponding configuration file, which explains whether to start in development mode or production mode. And separate the URLs, such as authentication-related URLs, WeChat-related URLs, common service-related URLs, etc.
2. At the same time, there are multiple configuration files, such as topo-dev.json, topo-production .json, topo-image.json, etc. This isolates different environments. If it is started in development mode, topo-dev.json is loaded, and the configured URLs are all like 127.0.0.1
3. When starting, load this configuration file, and put the key information under the global._g_env global variable, you can easily obtain the environment and URL information during runtime
The server side obtains the URL
The server side code is also It runs in the node environment, so it is very simple to obtain the URL. Through _g_env.url, you can get the path in the configuration file
The front-end page obtains the URL
The front-end page often also You need to send an ajax request, so you also need to know the url. However, static js has no way to obtain the server's environment information and URL, so it needs to obtain this information from the server. A feasible approach is:
First, the server has a service that specifically downloads this information. Send:
function clientSettingScript(req, res, next){ var script = "window.global = {_g_server:{}}; \n"+ ";global[\"_g_server\"].staticurl=\"" +global["_g_topo"].clientAccess.staticurl + "\"\n"+ ";global[\"_g_server\"].uploadurl=\"" +global["_g_topo"].clientAccess.uploadurl + "\"\n"+ ";global[\"_g_server\"].authurl=\"" +global["_g_topo"].clientAccess.authurl + "\"\n"+ ";global[\"_g_server\"].serviceurl=\"" +global["_g_topo"].clientAccess.serviceurl + "\"\n"+ ";global[\"_g_server\"].wxserviceurl=\"" +global["_g_topo"].clientAccess.wxserviceurl + "\"\n"+ ";global[\"_g_server\"].nail_pc_url=\"" +global["_g_topo"].connector.nail_pc_url + "\"\n"+ ";global[\"_g_env\"] =\"" +global["_g_topo"].env+ "\";\n"; res.end(script);}
This is an ordinary express service, but it is actually a js script. On the front-end page, use the script tag to load it
<script src="/svc/portal/setting"></script>
In this way, when the browser gets the response, it will use it as a piece of js To execute the script, a global variable global is placed on the window, which contains environment information and URL information
At the same time, the URL only contains the domain name, and the page assembles the complete URL according to the actual situation, such as:
security_code_url: global["_g_server"].serviceurl + "/getCode/"
Summary
The key to this approach is:
1. Combine the URL and environment information Put it in a separate configuration file instead of hard-coding it in the code. At the same time, isolate different configuration files according to the development environment, production environment, and mirror environment
2. Write a dedicated service on the server side to give these configuration information to the client page, and the client page does not need to be written to death

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.
