背景
- 我正在构建一个多语言系统
- 我正在使用 MVC 4 捆绑功能
- 我有从右到左 (RTL)
Javascripts
和Styles
从左到右 (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")
}
问题:
我想知道是否有更好的方法来实现它,我希望:
处理检测哪种文化的逻辑,并将正确的文件拉到包中(后面的代码)而不是在视图中。
所以在视图中我要做的就是调用一个文件。
如果我将逻辑留在视图中,则意味着我必须在每个视图中处理它。我想避免它。