ASP.NET MVC本地化或更改默认模型绑定错误消息

时间:2018-12-30 13:04:10

标签: c# asp.net-mvc validation localization model-binding

如何更改“值'某些值'对'某些属性'无效”验证错误的语言?

有人可以帮忙吗?我想将图片中的错误翻译成俄语Error。我浏览了很多网站,尝试使用RegularExpression,但这无济于事 可能是我不正确地理解该怎么做?

我只需要翻译错误,而无需更改文化。

在web.config中:

<globalization culture="en" uiCulture="en" />

具有数据注释属性的我的实体:

public class Player
{
    /* Some other properties */

    [Required(ErrorMessage = "Укажите среднее количество блокшотов")]
    [Range(0, 10.0, ErrorMessage = "Недопустимое значение, до 10")]
    public float BlockPerGame { get; set; }

    /* Some other properties */
}

我的视图:

@using (Html.BeginForm())
{
    @Html.HiddenFor(m => m.Id)    
    <div class="box-form">

    /* Some other properties */

    <div class="text-style-roboto form-group">
        <label>Среднее количество блокшотов</label>
        @Html.TextBoxFor(m => m.BlockPerGame, new { @class = "form-control" })
        @Html.ValidationMessageFor(m => m.BlockPerGame)
    </div>

    /* Some other properties */

    <div class="form-group">
        <button type="submit" class="button button-create" id="button-create">Добавить</button>

        @Html.ActionLink("Отмена", "Index", null, new { @class = "button button-cancel", id = "button-cancel" })
    </div>
</div>
}

和我的控制器:

public class AdminController : Controller
{
    /*Some other methods*/
    [HttpPost]
    public async Task<ActionResult> Edit(Player player, string ChoosingTeam)
    {
        if (ModelState.IsValid)
        {
            if (ChoosingTeam != string.Empty)
            {
                try
                {
                    player.TeamId = int.Parse(ChoosingTeam);
                    await repository.SavePlayerAsync(player);
                    TempData["message"] = string.Format("Игрок {0} {1} сохранены", player.Name, player.Surname);

                    return RedirectToAction("Index");
                }
                catch (Exception exc)
                {
                    Console.WriteLine(exc.Message);
                }
            }
        }
        IEnumerable<SelectListItem> list = new SelectList(repository.Teams, "Id ", "Name");
        ViewBag.ChoosingTeamName = list;
        return View(player);
    }
}

1 个答案:

答案 0 :(得分:0)

当为属性输入无效值时,如果模型绑定程序无法将该值绑定到该属性,则模型绑定程序将为该属性设置一条错误消息。它与数据注释模型验证不同。实际上是模型绑定程序验证错误。

本地化或更改默认模型绑定错误消息

模型绑定错误消息与模型验证消息不同。要自定义或本地化它们,您需要创建一个全局资源并将其注册到Application_Start的{​​{1}}中。

要这样做,请按照下列步骤操作:

  1. 转到解决方案资源管理器
  2. 右键单击项目→添加 ASP.NET文件夹→选择 App_GlobalResources
  3. 右键单击 App_GlobalResources →选择添加新项
  4. 选择资源文件并将名称设置为 ErrorMessages.resx
  5. 在资源字段中,添加以下键和值并保存文件:
    • DefaultModelBinder.ResourceClassKeyPropertyValueInvalid
    • The value '{0}' is not valid for {1}. PropertyValueRequired:

注意: 如果只想自定义消息,则不需要任何特定于语言的资源,只需在{{ 1}},然后跳过下一步。

  1. 如果要本地化,请针对每种区域性将资源文件复制并粘贴到同一文件夹中,然后将其重命名为 ErrorMessages.xx-XX.resx 。代替A value is required.,使用区域性标识符,例如ErrorMessages.resx(波斯语) 然后为这些消息输入翻译,例如 ErrorMessages.fa-IR.resx

    • xx-XXfa-IR
    • PropertyValueInvalid مقدار '{0}' برای '{1}' معتبر نمی باشد.
  2. 打开Global.asax,然后在PropertyValueRequired:中粘贴代码:

    وارد کردن مقدار الزامی است.

ASP.NET CORE

对于ASP.NET Core,请阅读以下文章:ASP.NET Core Model Binding Error Messages Localization