MVC索引视图显示下拉ID而不是名称

时间:2013-06-17 19:50:18

标签: asp.net-mvc asp.net-mvc-4 html-select

我正在努力让一些基本的下拉框工作,现在我唯一的问题是TTTime的索引视图显示所选值的Id而不是该值的字符串“proj_code”。我已经从模型中自动生成了控制器和视图,然后对其进行了编辑,为proj_code字段提供了一个下拉列表。以下是代码的相关部分,并询问是否还有其他任何可以帮助的内容。

下拉列表的TTTime控制器代码:

    public ActionResult Details(int id = 0)
    {
        TTTime tttime = db.TTTime.Find(id);
        if (tttime == null)
        {
            return HttpNotFound();
        }
        var query = from c in db.TTSites select c;
        ViewBag.proj_code = new SelectList(query, "ID", "client_id", tttime.proj_code);
        return View(tttime);
    }

    //
    // GET: /Time/Create

    public ActionResult Create()
    {
        TTTime tttime = new TTTime();
        tttime.CreatedDate = DateTime.Now;
        var query = from c in db.TTSites select c;
        ViewBag.proj_code = new SelectList(query, "ID", "client_id");
        return View(tttime);
    }

创建/编辑/删除cust_id的视图代码:

    <div class="editor-label">
        @Html.LabelFor(model => model.proj_code)
    </div>
    <div class="editor-field">
        @Html.DropDownList("proj_code", String.Empty)
        @Html.ValidationMessageFor(model => model.proj_code)
    </div>

索引视图代码,它只提供id值,但应显示proj_code字符串:

    @model IEnumerable<TimeTracker.Models.TTTime>

@{
ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
    <th>
        @Html.DisplayNameFor(model => model.CreatedDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.employee)
    </th>
    </th>
    <th>
        @Html.DisplayNameFor(model => model.hrs_calc)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.cust_id)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.description)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.proj_code)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.type)
    </th>
    <th></th>
</tr>

@foreach (var item in Model) {
<tr>
    <td>
        @Html.DisplayFor(modelItem => item.CreatedDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.employee)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.hrs_calc)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.cust_id)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.description)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.proj_code)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.type)
    </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>
}

1 个答案:

答案 0 :(得分:0)

我在你的代码中看到的唯一下拉列表是在你的创建/编辑/删除页面上,但是我通常把我的列表放在你的字符串中。你有了string.empty

@Html.DropDownList("proj_code", ViewBag.proj_code, "Select One")

ViewBag可能不是传递数据的最佳选择。您可以尝试通过模型传递列表或在下拉列表中调用静态方法。希望这会有所帮助。