6

我有以下用于模型的类:

public class ApplicationUser
{
    public int? UserId { get; set; }

    public TimeZoneInfo TimeZoneDefault { get; set; }

    public string Username { get; set; }

   [...]
}

在视图中,我有以下代码成功创建了下拉列表:

@model Acme.ApplicationUser
@{
    var timeZoneList = TimeZoneInfo
        .GetSystemTimeZones()
        .Select(t => new SelectListItem
        {
            Text = t.DisplayName,
            Value = t.Id,
            Selected = Model != null && t.Id == Model.TimeZoneDefault.Id
        });
}

在表单中调用它:

<table>
  [....]
  <tr>
     <td>
       @Html.LabelFor(model => model.TimeZoneDefault, "Default Time Zone:")</strong>                  </td>
     <td>
        @Html.DropDownListFor(model => model.TimeZoneDefault, timeZoneList)
        <input type="submit" value="Save" /> 
     </td>
  </tr>
 </table>

一切都正确显示,问题又回到控制器上,我有这个:

[HttpPost]
        public ActionResult Profile(ApplicationUser model)
        {
            if (ModelState.IsValid)
            {
                model.Save();
            }

            return View();
        }

回传时ModelState无效,错误为:

System.InvalidOperationException:从类型“System.String”到类型“System.TimeZoneInfo”的参数转换失败,因为没有类型转换器可以在这些类型之间进行转换。

我需要做什么才能将所选值转换回 TimeZoneInfo?

4

1 回答 1

12

如果您不想使用自定义活页夹,可以使用此技巧:

// Model
public class test
{
    public string TimeZoneId { get; set; }
    public TimeZoneInfo TimeZone 
    { 
        get { return TimeZoneInfo.FindSystemTimeZoneById(TimeZoneId); }
        set { TimeZoneId = value.Id; } 
    }
}

在您看来,绑定到TimeZoneId

@Html.DropDownListFor(m => m.TimeZoneId, timeZoneList)
于 2013-10-18T20:32:05.457 回答