0

我正在尝试从我的视图中传递 DateTime 集合:

@Html.ActionLink("Hello", "Index", "Home", new { dates = new Collection(){date1, date2)} })

这是我的行动:

[HttpGet]
public ActionResult Index(int? page, string searchString, ICollection<DateTime> dates)
{ ...

但我总是在日期中得到空值。有什么建议么?

更新

问题是我认为它创建了不正确的网址:

http://localhost:39152/Home?dates=System.Collections.ObjectModel.Collection%601%5BSystem.DateTime%5D

顺便说一句,我补充说:

public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
  var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
  var date = value.ConvertTo(typeof (DateTime), CultureInfo.CurrentCulture);
  return date;
}

并采取行动:

[HttpGet]
public ActionResult Index(int? page, string searchString, [ModelBinder(typeof (ModelBinders.DateTimeBinder))]  ICollection<DateTime> dates)
{ ...
4

1 回答 1

1

抱歉,我不知道如何使用 UrlActionLink 或 Url.Action 来执行此操作,因为它们会对括号进行编码,但是如果您传递正确的查询字符串,默认的 ModelBinder 可以处理 ICollection 日期,如下所示

    var dates = new[] { new DateTime(2012, 11, 12), new DateTime(2013, 09, 13) };
    <a href="@(Url.Action("Index", "Home"))?@(string.Join("&", dates.Select((date, i) => Url.Encode("dates") + "[" + i + "]=" + date.ToString("s"))))">Hello</a>

网址将如下所示 /Home/Index?dates[0]=2012-11-12T00:00:00&dates[1]=2013-09-13T00:00:00

于 2013-09-27T16:50:23.403 回答