NopCommerce架构分析之(八)多语言支持

NopCommerce支持多国语言,很好的做到了国际化,我们可以很轻松的下载中文或任意国家的语言包,上传进行切换,下面就让我们看看NopCommerce是如何实现对多语言的支持的吧。

系统支持的语言是有类:Language表示;

多语言资源对应的类为:LocalizedProperty;

当先选择某种语言存储在类中:GenericAttribute;

多语言可以导出为XML文件,当然也支持导出。

IWorkContext及其实体类WebWorkContext为当前运行上下文;用户的登录信息以及一些上下文环境设置都保存在此类中。

具体包括:当前用户信息:CurrentCustomer;当前用户Cookie;货币;语言;税的类型;供应商等;

展现多语言资源的方式有几种:

一、在自定义类WebViewPage中放置了方法:T(),通过此方法,网页在展现时获取对应语言的文字。

其实T只是一个代理,代理的定义为:

 namespace Nop.Web.Framework.Localization { public delegate LocalizedString Localizer(string text, params object[] args); }

此代理返回值类型为LocalizedString,此类继承接口IHtmlString,以保证能正确显示本地化的文字资源。

IHtmlString的定义为:

 // 摘要: //   表示不应再次进行编码的 HTML 编码的字符串。 public interface IHtmlString { // 摘要: //   返回 HTML 编码的字符串。 // // 返回结果: //   HTML 编码的字符串。 string ToHtmlString(); } 

二、通过扩展HtmlHelper

类HtmlExtensions扩展了HtmlHelper类,

主要是对一些控件的封装,并支持多语言。

方法 LocalizedEditor是对Telerik的TabStrip控件的封装(也就是多页签控件---Tab控件),的。系统同时支持有多种语言时,多为每种语言显示一个页签,当然仅当需要时才这么做。这里面用到了接口ILocalizedModel和接口ILocalizedModelLocal。接口ILocalizedModel用来标示某Model类支持这种多语言显示,其中里面包括多种语言数据列表Locales,实现接口ILocalizedModelLocal的类就是特定一种语言的数据。LocalizedEditor方法就是根据这些接口的配合实现了支持多种语言页签了。Admin项目使用此方法,Web项目没有使用。

 public static HelperResult LocalizedEditor(this HtmlHelper helper, string name, Func localizedTemplate, Func standardTemplate) where T : ILocalizedModel where TLocalizedModelLocal : ILocalizedModelLocal { return new HelperResult(writer => { if (helper.ViewData.Model.Locales.Count > 1) { var tabStrip = helper.Telerik().TabStrip().Name(name).Items(x => { x.Add().Text("Standard").Content(standardTemplate(helper.ViewData.Model).ToHtmlString()).Selected(true); for (int i = 0; i ().GetLanguageById(locale.LanguageId); x.Add().Text(language.Name) .Content(localizedTemplate (i). ToHtmlString ()) .ImageUrl("~/Content/images/flags/" + language.FlagImageFileName); } }).ToHtmlString(); writer.Write(tabStrip); } else { standardTemplate(helper.ViewData.Model).WriteTo(writer); } }); }

扩展方法NopLabelFor是另外一种多语言实现方式。

此方法主要是根据特性DisplayNameAttribute的子类NopResourceDisplayName实现对属性名称的描述。此特性是对Model属性的修饰,以指定属性的名称。

例如类AddNewsCommentModel的属性用NopResourceDisplayName特性指定:

 namespace Nop.Web.Models.News { public partial class AddNewsCommentModel : BaseNopModel { [NopResourceDisplayName("News.Comments.CommentTitle")] [AllowHtml] public string CommentTitle { get; set; } [NopResourceDisplayName("News.Comments.CommentText")] [AllowHtml] public string CommentText { get; set; } public bool DisplayCaptcha { get; set; } } }

HtmlHelper的扩展方法NopLabelFor的实现如下:

 public static MvcHtmlString NopLabelFor(this HtmlHelper helper, Expression> expression, bool displayHint = true) { var result = new StringBuilder(); var metadata = ModelMetadata.FromLambdaExpression(expression, helper.ViewData); var hintResource = string.Empty; object value = null; if (metadata.AdditionalValues.TryGetValue("NopResourceDisplayName", out value)) { var resourceDisplayName = value as NopResourceDisplayName; if (resourceDisplayName != null && displayHint) { var langId = EngineContext.Current.Resolve().WorkingLanguage.Id; hintResource = EngineContext.Current.Resolve() .GetResource(resourceDisplayName.ResourceKey + ".Hint", langId); result.Append(helper.Hint(hintResource).ToHtmlString()); } } result.Append(helper.LabelFor(expression, new { title = hintResource })); return MvcHtmlString.Create(result.ToString()); }

以上就是NopCommerce架构分析之(八)多语言支持的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » ASP编程