mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-04 21:20:16 +08:00
!1622 fix(#I41ZUB): resolve localization in WTM not retrieve right resource from resx file
* fix: 修复本地化上一个工厂未找到资源逻辑判断 * refactor: 优化 Factory 类增加修饰符
This commit is contained in:
parent
139b9e0327
commit
8f670a6281
@ -81,7 +81,8 @@ namespace BootstrapBlazor.Localization.Json
|
||||
if (type != null)
|
||||
{
|
||||
var localizer = factory.Create(type);
|
||||
ret = localizer[name];
|
||||
var l = localizer[name];
|
||||
ret = l.ResourceNotFound ? null : l.Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -98,9 +99,10 @@ namespace BootstrapBlazor.Localization.Json
|
||||
{
|
||||
get
|
||||
{
|
||||
var format = base.GetStringSafely(name, CultureInfo.CurrentUICulture) ?? GetJsonStringSafely(name);
|
||||
var format = base.GetStringSafely(name, CultureInfo.CurrentUICulture)
|
||||
?? GetStringFromInject(name)
|
||||
?? GetJsonStringSafely(name);
|
||||
var value = !string.IsNullOrEmpty(format) ? string.Format(format, arguments) : name;
|
||||
|
||||
return new LocalizedString(name, value, resourceNotFound: format == null, searchedLocation: _searchedLocation);
|
||||
}
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ namespace BootstrapBlazor.Localization.Json
|
||||
private readonly JsonLocalizationOptions _jsonOptions;
|
||||
private readonly ILoggerFactory _loggerFactory;
|
||||
private string? _typeName;
|
||||
private IServiceProvider _provider;
|
||||
private readonly IServiceProvider _provider;
|
||||
|
||||
/// <summary>
|
||||
/// 构造函数
|
||||
@ -87,7 +87,7 @@ namespace BootstrapBlazor.Localization.Json
|
||||
/// 获得 IResourceNamesCache 实例
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public IResourceNamesCache GetCache()
|
||||
internal IResourceNamesCache GetCache()
|
||||
{
|
||||
var field = this.GetType().BaseType?.GetField("_resourceNamesCache", BindingFlags.NonPublic | BindingFlags.Instance);
|
||||
var ret = field?.GetValue(this) as IResourceNamesCache;
|
||||
|
Loading…
Reference in New Issue
Block a user