0

我在我的asp.net应用程序上使用资源,需要使键/值对在客户端上可用。我已经能够通过使用 HttpHandler 将它们用于特定资源文件,但标准继承不适用于我正在使用的代码。


基本PM.resx文件包含以下内容

key: a value: AAAAAA
key: b value: BBBBBB
key: c value: CCCCCC

PM.pt.resx文件包含以下内容

key: a value: ptptpt

当我在我的浏览器上有一种文化pt或编码时,我希望得到以下返回,因为该pt文件中只有一个条目,并且基本文件包含其余的键/值对。

key: a value: ptptpt
key: b value: BBBBBB
key: c value: CCCCCC

但我只得到以下内容。

key: a value: ptptpt

我用来生成 JavaScript 的 c# 代码如下。

public void ProcessRequest(HttpContext context)
    {
        ResourceManager rm = new ResourceManager("Resources.PM", System.Reflection.Assembly.Load("App_GlobalResources"));
        Thread.CurrentThread.CurrentCulture = new CultureInfo("pt-BR");//for testing culture change
        //ResourceSet resourceSet = rm.GetResourceSet(CultureInfo.CurrentUICulture, true, true);
        ResourceSet resourceSet = rm.GetResourceSet(Thread.CurrentThread.CurrentCulture, true, true);

        string r = string.Empty;

        if (resourceSet != null)
        {
            foreach (DictionaryEntry entry in resourceSet)
            {
                string resourceKey = entry.Key.ToString();
                object resource = entry.Value.ToString();
                r += "\"" + entry.Key.ToString() + "\": \"" + entry.Value.ToString() + "\", ";
            }
        }

        r = "var q = {" + r + " culture: \"" + Thread.CurrentThread.CurrentCulture.ToString() + "\"};";
        r += "console.log(q);$.each(q, function(k, v){console.log(k + \": \" + v)});";
        context.Response.Write(r);
    }

如何让继承在代码中工作?

4

1 回答 1

0

我已经找到了我的问题的解决方案。我创建了两个ResourceSets;一个用于默认语言(用于默认资源),另一个用于当前语言(用于特定语言的资源)。然后我创建了一个dictionary字符串,首先添加了语言特定的键/值对,然后是默认的键/值对。如果已经存在特定语言的密钥,则不会添加默认语言。

public void ProcessRequest(HttpContext context)
    {
        string responseString = string.Empty;
        CultureInfo currentCulture = CultureInfo.CurrentUICulture;

        ResourceManager rm = new ResourceManager("Resources.PM", System.Reflection.Assembly.Load("App_GlobalResources"));

        CultureInfo defaultCulture = new CultureInfo("en-US");

        ResourceSet currentRS = rm.GetResourceSet(currentCulture, true, true);
        ResourceSet defaultRS = null;

        if (defaultCulture != currentCulture)
        {
            defaultRS = rm.GetResourceSet(defaultCulture, true, true);
        }

        Dictionary<string, string> translations = new Dictionary<string, string>();

        if (currentRS != null)
        {
            foreach (DictionaryEntry entry in currentRS)
            {
                try {
                    translations.Add(entry.Key.ToString(), entry.Value.ToString());
                }
                catch (Exception e) { }
            }
        }

        if (defaultRS != null)
        {
            foreach (DictionaryEntry entry in defaultRS)
            {
                try {
                    translations.Add(entry.Key.ToString(), entry.Value.ToString());
                }
                catch (Exception e){}
            }
        }

        foreach (KeyValuePair<String, String> entry in translations)
        {
            responseString += "\"" + entry.Key.ToString() + "\": \"" + entry.Value.ToString() + "\", ";
        }

        responseString = "var translations = {" + responseString + " culture: \"" + currentCulture.ToString() + "\"};";
        context.Response.Write(responseString);

        Compress(context);
        //SetHeadersAndCache(absolutePath, context);
    }

注意:我没有在这里说明转义我的键和值对。这是我必须在我的代码中跟进的事情。

我希望这对其他人有所帮助!

于 2012-09-21T21:22:24.650 回答