次のコントローラー アクションを検討してください。
public ActionResult List(int userid = 0)
{
var campaigns = db.Dyn_Campaigns.Where(c => c.UserID == userid);
return View(campaigns.ToList());
}
モデルの UserID フィールドは int です。
これはビューです:
@model IEnumerable<KnockoutExample.Models.Dyn_Campaigns>
@{
ViewBag.Title = "List";
}
<h2>List</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.DateCreation)
</th>
<th>
@Html.DisplayNameFor(model => model.CompanyID)
</th>
<th>
@Html.DisplayNameFor(model => model.UserID)
</th>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Descr)
</th>
...
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.DateCreation)
</td>
<td>
@Html.DisplayFor(modelItem => item.CompanyID)
</td>
<td>
@Html.DisplayFor(modelItem => item.UserID)
</td>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Descr)
</td>
...
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
@Html.ActionLink("Details", "Details", new { id=item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID })
</td>
</tr>
}
</table>
そして、これは global.asax での私のカスタム ルーティングです。
config.Routes.MapHttpRoute("MyRoute", "{controller}/{action}/{userid}",
new { controller = "Campaigns", action = "List", userid = UrlParameter.Optional });
問題は、userid
パラメーターが常にデフォルト値 (0) を取得することです。ここで何が間違っていますか?