Table of Contents
Configuration file
The server side obtains the URL
The front-end page obtains the URL
Summary
Home Web Front-end HTML Tutorial Multi-domain name environment, a solution for page acquisition url_html/css_WEB-ITnose

Multi-domain name environment, a solution for page acquisition url_html/css_WEB-ITnose

Jun 24, 2016 am 11:56 AM

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);}
Copy after login

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>
Copy after login

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/"
Copy after login

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

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

See all articles