Home Backend Development C#.Net Tutorial Detailed introduction to the sample code for multi-language implementation of Asp.Net Core MVC project

Detailed introduction to the sample code for multi-language implementation of Asp.Net Core MVC project

Jun 04, 2017 am 09:48 AM

This article mainly introduces the Asp.Net Core MVC project implementation multi-language instance (Globalization/Localization), with It has a certain reference value. If you are interested, you can check it out. I just recently implemented a multi-language function for a

Razor

MVC project, called Globalization, Localization, whatever. The final effect to be achieved is to switch the language of the entire site with one click, and only one set of pages needs to be written during development. Let’s get to the point

First, we need to create a CultureConfigurer class to manage localization resources and complete the "translation" link:

Here I used

Static

class, and then execute the Init() method when the MVC project StartUp is actually a bit stupid. Of course, you can also write an interface first and then use dependency injection to create a singleton .

There are a few points to note here:

1. The enum class Culture is used to represent the language to be implemented. Here I just simply implemented Chinese and English (I don’t understand the others), The corresponding CultureConfigurer class has two Dictionary

in Chinese and English. 2. Use Assembly.Load to load the assembly. The parameter is your own assembly name. I just wrote a

# here. ## 3. I chose the json file for the resource file, also for the convenience of calling in js. Of course, you can also use

xml

or any format you want to use. You only need to adjust the parsing method and load the file content. Just go to the corresponding Dictionary

 4. When you see the GetValue method

, I believe everyone has understood it. In fact, it is multi-language, no matter what language it is, it uses a certain word. key, and then call this method to "translate" into words in the current language. For example, if "Open" is used as the Key, then there should be a KeyValuePair in the Chinese Dictionary that is "Open": "Open", and the corresponding English should have an "Open": "Open", then when Culture is in Chinese, the display will be "Open" means "Open" in English.

 5. Resource files can be created anywhere in the assembly. If your project has a project.json file, then add it in buildOptions. Be careful to modify the path according to your own file location

"embed": {
   "include": [
    "Localization/SourceFiles/*.json"
   ]
  }
Copy after login

If it is VS2017, it is a csproj file, then right-click the resource file to be added, select "

Properties

", change the configuration to "All configurations", and change the "Generate operation" in the advanced configuration properties to " Embedded resources", as shown below:

At this point, we have written the core class to implement localization, and now we need to solve the problem of how to display it on the page:

Create a new class MyRazorPage in the MVC project

using System;
using Microsoft.AspNetCore.Mvc.Razor;
using Localization;

namespace MVC.Views
{
  public abstract class MyRazorPage<TModel> : RazorPage<TModel>
  {
    public virtual string L(string source)
    {
      var value = Context.Request.Cookies["culture"];
      Culture c;
      if (string.IsNullOrEmpty(value) || !Enum.TryParse(value, out c))
      {
        c = Culture.Cn;
      }
      return CultureConfigurer.GetValue(source, c);
    }
  }
}
Copy after login

Note that this class is an

abstract class

,

inheritsRazorPage. Then find the _ViewImports.cshtml file in the Views folder, and add a line "@inherits MVC.Views.MyRazorPage" in it, so that all your RazorPages will inherit the MyRazorPage class, which means you can Write the method you want to use and you can call it directly in cshtml. Here I wrote an L method and called the GetValue method of CultureConfigurer. Then, the text that needs to be translated on the page just needs to be written like @L("Open"). As you can see, I save the user language in Cookie, and everyone can have their own implementation methods here. My implementation method is very simple. When the user switches languages, he accesses an interface, modifies the cookie representing the language, and then refreshes the page.

The above is the detailed content of Detailed introduction to the sample code for multi-language implementation of Asp.Net Core MVC project. For more information, please follow other related articles on the PHP Chinese website!

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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)

How to enable Core Isolation's memory integrity feature in Windows 11 How to enable Core Isolation's memory integrity feature in Windows 11 May 10, 2023 pm 11:49 PM

Microsoft's Windows 11 2022 Update (22H2) enables CoreIsolation's memory integrity protection by default. However, if you are running an older version of the operating system, such as Windows 11 2022 Update (22H1), you will need to turn this feature on manually. Turn on CoreIsolation's Memory Integrity feature in Windows 11 For users who don't know about Core Isolation, it's a security process designed to protect basic core activities on Windows from malicious programs by isolating them in memory. This process, combined with the memory integrity feature, ensures

What does computer core mean? What does computer core mean? Sep 05, 2022 am 11:24 AM

Core has two meanings in computers: 1. The core, also known as the core, is the most important component of the CPU. All calculations, accepting storage commands, and processing data of the CPU are performed by the core; 2. Core, core is Intel's processor Name, Core is the processor brand launched by Intel after the Pentium processor. It has currently released twelfth generation Core processors.

How to use vue and Element-plus to achieve multi-language and international support How to use vue and Element-plus to achieve multi-language and international support Jul 17, 2023 pm 04:03 PM

How to use vue and Element-plus to achieve multi-language and international support Introduction: In today's globalized era, in order to cope with the needs of users in different languages ​​and cultures, multi-language and international support have become essential features for many front-end projects . This article will introduce how to use vue and Element-plus to achieve multi-language and international support so that the project can flexibly adapt to the needs of different language environments. 1. Install Element-plusElement-plus is vue official

How to implement a multilingual website in PHP How to implement a multilingual website in PHP May 22, 2023 am 11:31 AM

With the increasing popularity of the Internet, more and more websites need to support multiple languages. This is because the website's audience may come from different regions and cultural backgrounds, and if the website is only available in a single language, it may limit the number and experience of visitors. This article will introduce how to implement a multilingual website in PHP. 1. Creation and design of language files Language files are files that store all text strings and their corresponding translations, and need to be created in a specific format. When creating a language file, you need to consider the following aspects: 1. Naming and storage location The file name should be

Tips for using i18n to implement multi-language switching in Vue Tips for using i18n to implement multi-language switching in Vue Jun 25, 2023 am 09:33 AM

With the continuous development of internationalization, more and more websites and applications need to support multi-language switching functions. As a popular front-end framework, Vue provides a plug-in called i18n that can help us achieve multi-language switching. This article will introduce common techniques for using i18n to implement multi-language switching in Vue. Step 1: Install the i18n plug-in First, we need to install the i18n plug-in using npm or yarn. Enter the following command at the command line: npminst

How does CakePHP handle multiple languages? How does CakePHP handle multiple languages? Jun 06, 2023 am 08:03 AM

CakePHP is a popular PHP development framework that helps developers quickly build high-quality web applications. With the development of globalization, more and more applications need to support multiple languages, and CakePHP also provides corresponding support. This article will introduce how CakePHP handles multiple languages. 1. Multi-language support Multi-language support is an important feature of CakePHP. Starting with version 2.0, CakePHP supports the gettext file format, which

How to use PHP for multi-language framework development? How to use PHP for multi-language framework development? May 13, 2023 am 08:09 AM

With the deepening of globalization, more and more websites and applications need to support multiple languages. As a programming language widely used in Web development, PHP also needs to support the development of multi-language frameworks. This article will introduce how to use PHP for multi-language framework development. 1. What is a multilingual framework? First, let’s first understand what a multilingual framework is. Multilingual framework, as the name suggests, is a framework that can support multiple languages. In internationalization and localization design, multi-language framework is essential. It can support a variety of

How to Fix Processor Thermal Trip Error in Windows 11/10 [Fix] How to Fix Processor Thermal Trip Error in Windows 11/10 [Fix] Apr 17, 2023 am 08:13 AM

Most of the devices, such as laptops and desktops, have been heavily used by young gamers and coders for a long time. The system sometimes hangs due to application overload. This forces users to shut down their systems. This mainly happens to players who install and play heavy games. When the system tries to boot after force shutdown, it throws an error on a black screen as shown below: Below are the warnings detected during this boot. These can be viewed in the settings on the event log page. Warning: Processor thermal trip. Press any key to continue. ..These types of warning messages are always thrown when the processor temperature of a desktop or laptop exceeds its threshold temperature. Listed below are the reasons why this happens on Windows systems. Many heavy applications are in

See all articles