8

我目前正在尝试在 asp.net 5 中使用 taghelper。我想使用带有 ViewBag 列表的 select tag helper。我放入 asp-for 字段的任何内容都会给我一个错误,因为它试图从 IEnumerable 而不是视图包的模型中提取它。

我想替换这个:

@model IEnumerable<InvoiceIT.Models.Invoice>
@using (Html.BeginForm())
{
    <p>            
        @Html.DropDownList("Companies", String.Empty)       
        <input type="submit" value="Filter" class="btn btn-default" />
    </p>
}

有了这个:

@model IEnumerable<InvoiceIT.Models.Invoice>
<form asp-controller="Invoice" asp-action="Index" method="post" class="form-horizontal" role="form">
    <select asp-for="????" asp-items="ViewBag.Companies" class="form-control">
    </select>
    <input type="submit" value="Save" class="btn btn-default" />
</form>

这是我在控制器中填充选择列表的方式:

ViewBag.Companies = new SelectList(await DbContext.Company.ToListAsync(), "CompanyID", "Name");
4

3 回答 3

10

如果您不希望asp-for属性直接从 中提取,Model您可以通过提供@.

又名:

<select asp-for="@ViewBag.XYZ">
    ...
</select>

因此,根据你所说的,我相信你的位会变成:

@model IEnumerable<InvoiceIT.Models.Invoice>
<form asp-controller="Invoice" asp-action="Index" method="post" class="form-horizontal" role="form">
@{
    SelectList companies = ViewBag.Companies;
    var currentlySelectedIndex = 0; // Currently selected index (usually will come from model)
}
    <select asp-for="@currentlySelectedIndex" asp-items="companies" class="form-control">
    </select>
    <input type="submit" value="Save" class="btn btn-default" />
</form>

希望这会有所帮助!

于 2015-08-05T08:19:26.347 回答
3

asp-for 只需要是具有当前选定值的属性,asp-items 需要是

IEnumerable<SelectListItem>

这个片段来自我项目中的工作代码:

<select id="CompanyCountry" asp-for="CompanyCountry"
           asp-items="Model.AvailableCountries" class="form-control"></select>

在我使用的模型中

IList<SelectListItem> 

可用国家/地区

于 2015-08-04T15:38:56.317 回答
0

你可以试试这样...

@Html.DropDownListFor(model => model.Id_TourCategory, new SelectList(ViewBag.TourCate, "Value", "Text"))

 public ActionResult TourPackage()
    {
        List<TourCategory> lst = new List<TourCategory>();
        lst = db.TourCategories.ToList();
        ViewBag.TourCate = new SelectList(lst, "Id", "CategoryName");          
        return View();
    }
于 2015-08-04T08:59:24.700 回答