1. <i id='q1908'><tr id='q1908'><dt id='q1908'><q id='q1908'><span id='q1908'><b id='q1908'><form id='q1908'><ins id='q1908'></ins><ul id='q1908'></ul><sub id='q1908'></sub></form><legend id='q1908'></legend><bdo id='q1908'><pre id='q1908'><center id='q1908'></center></pre></bdo></b><th id='q1908'></th></span></q></dt></tr></i><div id='q1908'><tfoot id='q1908'></tfoot><dl id='q1908'><fieldset id='q1908'></fieldset></dl></div>
      <tfoot id='q1908'></tfoot>
      • <bdo id='q1908'></bdo><ul id='q1908'></ul>

      <small id='q1908'></small><noframes id='q1908'>

      <legend id='q1908'><style id='q1908'><dir id='q1908'><q id='q1908'></q></dir></style></legend>

      1. 在 Javascript 中本地化字符串

        时间:2023-08-27

        <i id='MxsBp'><tr id='MxsBp'><dt id='MxsBp'><q id='MxsBp'><span id='MxsBp'><b id='MxsBp'><form id='MxsBp'><ins id='MxsBp'></ins><ul id='MxsBp'></ul><sub id='MxsBp'></sub></form><legend id='MxsBp'></legend><bdo id='MxsBp'><pre id='MxsBp'><center id='MxsBp'></center></pre></bdo></b><th id='MxsBp'></th></span></q></dt></tr></i><div id='MxsBp'><tfoot id='MxsBp'></tfoot><dl id='MxsBp'><fieldset id='MxsBp'></fieldset></dl></div>

          <tfoot id='MxsBp'></tfoot><legend id='MxsBp'><style id='MxsBp'><dir id='MxsBp'><q id='MxsBp'></q></dir></style></legend>

          1. <small id='MxsBp'></small><noframes id='MxsBp'>

                <tbody id='MxsBp'></tbody>

                <bdo id='MxsBp'></bdo><ul id='MxsBp'></ul>
                1. 本文介绍了在 Javascript 中本地化字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我目前正在使用 .resx 文件来管理 .NET 的服务器端资源.

                  I'm currently using .resx files to manage my server side resources for .NET.

                  我正在处理的应用程序还允许开发人员将 JavaScript 插入到各种事件处理程序中以进行客户端验证等.对我来说本地化 JavaScript 消息和字符串的最佳方法是什么?

                  the application that I am dealing with also allows developers to plugin JavaScript into various event handlers for client side validation, etc.. What is the best way for me to localize my JavaScript messages and strings?

                  理想情况下,我想将字符串存储在 .resx 文件中,以便与其他本地化资源保持一致.

                  Ideally, I would like to store the strings in the .resx files to keep them with the rest of the localized resources.

                  我愿意接受建议.

                  推荐答案

                  基本的 JavaScript 对象是一个关联数组,因此可以很容易地用于存储键/值对.因此,使用 JSON,您可以为每个要本地化的字符串创建一个对象,如下所示:

                  A basic JavaScript object is an associative array, so it can easily be used to store key/value pairs. So using JSON, you could create an object for each string to be localized like this:

                  var localizedStrings={
                      confirmMessage:{
                          'en/US':'Are you sure?',
                          'fr/FR':'Est-ce que vous êtes certain?',
                          ...
                      },
                  
                      ...
                  }
                  

                  然后你可以像这样得到每个字符串的语言环境版本:

                  Then you could get the locale version of each string like this:

                  var locale='en/US';
                  var confirm=localizedStrings['confirmMessage'][locale];
                  

                  这篇关于在 Javascript 中本地化字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:通常最好使用哪个 - StringComparison.OrdinalIgnoreCase 下一篇:获取所有可用语言的编程方式(在附属程序集中

                  相关文章

                  最新文章

                    1. <tfoot id='UHiw9'></tfoot><legend id='UHiw9'><style id='UHiw9'><dir id='UHiw9'><q id='UHiw9'></q></dir></style></legend>
                    2. <small id='UHiw9'></small><noframes id='UHiw9'>

                      • <bdo id='UHiw9'></bdo><ul id='UHiw9'></ul>

                      <i id='UHiw9'><tr id='UHiw9'><dt id='UHiw9'><q id='UHiw9'><span id='UHiw9'><b id='UHiw9'><form id='UHiw9'><ins id='UHiw9'></ins><ul id='UHiw9'></ul><sub id='UHiw9'></sub></form><legend id='UHiw9'></legend><bdo id='UHiw9'><pre id='UHiw9'><center id='UHiw9'></center></pre></bdo></b><th id='UHiw9'></th></span></q></dt></tr></i><div id='UHiw9'><tfoot id='UHiw9'></tfoot><dl id='UHiw9'><fieldset id='UHiw9'></fieldset></dl></div>