这就是我会做的。
你的视图模型可能看起来像这样,并且会有一个卡片列表:
public class CardViewModel
{
public int CardId { get; set; }
public IEnumerable<Card> Cards { get; set; }
}
我不知道你的卡有什么属性,但让我发明我自己的:
public class Card
{
public int Id { get; set; }
public string Name { get; set; }
}
您的视图将接受此视图模型:
@model YourProject.ViewModels.Cards.CardViewModel
卡片下拉列表的 HTML 标记:
@Html.DropDownListFor(
x => x.CardId,
new SelectList(Model.Cards, "Id", "Name", Model.CardId),
"-- Select --",
new { id = "Cards" }
)
@Html.ValidationMessageFor(x => x.CardId)
首次加载视图时的操作方法:
public ActionResult YourActionMethod()
{
CardViewModel viewModel = new CardViewModel
{
Cards = cardService.FindAll()
}
return View(viewModel);
}
[HttpPost]
public ActionResult YourActionMethod(CardViewModel viewModel)
{
if (!ModelState.IsValid)
{
return View(viewModel);
}
// Do what ever you need to do. The selected card's id will now be populated
return RedirectToAction("List");
}
关于您的 JavaScript 问题,我会建议您提出一个新问题,但我会概述您可以注意的内容。通过使用添加 on change 事件来分隔 JavaScript 和 HTML jQuery
(使用任何你想要的)。例如:
<script>
$(document).ready(function () {
$("#Cards").change(function () {
alert('cards value has changed');
});
});
</script>
我希望这有帮助。