我有一个观点,例如:
@model List<General.StuffDto>
@using (Html.BeginForm("Index","Stuff", FormMethod.Get)) {
@Html.DropDownList("StuffSelect", new SelectList(Model, "Id", "Name"))
}
我想发出这样的 Get 请求:
本地主机:1234/东西/123456
其中 123456 是 DropDownList 中选定项目的值。
如何提出这个获取请求?最好不使用javascript。