5

背景

  • 我正在构建一个多语言系统
  • 我正在使用 MVC 4 捆绑功能
  • 我有从右到左 (RTL)JavascriptsStyles从左到右 (LTR) 语言的不同文件

目前我处理这种情况如下:

捆绑配置文件

 //Styles for LTR 
 bundles.Add(new StyleBundle("~/Content/bootstarp").Include(
                "~/Content/bootstrap.css",
                "~/Content/CustomStyles.css"));

 // Styles for RTL
 bundles.Add(new StyleBundle("~/Content/bootstrapRTL").Include(
            "~/Content/bootstrap-rtl.css",
            "~/Content/CustomStyles.css"));

 //Scripts for LTR
 bundles.Add(new ScriptBundle("~/scripts/bootstrap").Include(
            "~/Scripts/bootstrap.js",
            "~/Scripts/CmsCommon.js"
            ));

 //Scripts for RTL
 bundles.Add(new ScriptBundle("~/scripts/bootstrapRTL").Include(
            "~/Scripts/bootstrap-rtl.js",
            "~/Scripts/CmsCommon.js"
            ));

视图中的实现:

@if (this.Culture == "he-IL")
{
    @Styles.Render("~/Content/bootstrapRTL")
}
else
{
    @Styles.Render("~/Content/bootstrap")
}

问题:

我想知道是否有更好的方法来实现它,我希望:

处理检测哪种文化的逻辑,并将正确的文件拉到包中(后面的代码)而不是在视图中。

所以在视图中我要做的就是调用一个文件。

如果我将逻辑留在视图中,则意味着我必须在每个视图中处理它。我想避免它。

4

2 回答 2

5

您不需要使用开关和魔术字符串。您可以使用以下属性检查文化是否为 RTL:

Thread.CurrentThread.CurrentCulture.TextInfo.IsRightToLeft
于 2013-05-23T09:50:08.890 回答
3

尝试自定义 HTML 助手:

public static class CultureHelper
{
    public static IHtmlString RenderCulture(this HtmlHelper helper, string culture)
    {
        string path = GetPath(culture);
        return Styles.Render(path);
    }

    private static string GetPath(string culture)
    {
        switch (culture)
        {
            case "he-IL": return "~/Content/bootstarpRTL";
            default: return "~/Content/bootstarp";
        }
    }
}
于 2013-02-16T10:12:37.477 回答