傳遞參數或查詢字串給_Layout.cshtml中的頂部導航在ASP.NET中的實作方式
P粉343408929
2023-09-01 10:01:28
<p>在我的控制器中,我有三個參數。 (GET:/Class/List)</p>
<pre class="brush:php;toolbar:false;">public class ClassController : Controller {
public ActionResult List(string classCode = null, string className = null, List<string> semester = null)
{ ... }
}</pre>
<p>而我在我的導覽列中得到了這個...</p>
<pre class="brush:php;toolbar:false;"><a class="nav-link text-dark" asp-area="" asp-controller="Class" asp-action ="List">Classes</a></pre>
<p>我想傳遞一個參數semester的值,使得連結看起來像<code>localhost/Class/List?semester=9&semester=1</code>。謝謝! </p>
<p>我試過ViewBag和asp-route-id,但失敗了。 </p>
這可能不起作用,因為你的ActionResult List期望的是字串清單。根據我的經驗,一個字串列表通常需要你透過循環Model -> item.semester來列出視圖中的所有值。
你可以嘗試將
List<string>
更改為單一string
。然後將這個附加到「a」標籤。假設你在控制器中填入了一個
Viewbag.semesterId
。你可以嘗試將List轉換為查詢字串。 操作:
A.cshtml:
結果: