0
我希望我已經提供了足夠的信息給有人幫助。我有一個jQuery的模板,其中是一個鏈接,返回一個id到一個ActionResult。 我的問題是:添加另一個參數到鏈接的語法是什麼,所以ActionResult接收兩個參數。使用MVC在jQuery模板中添加兩個參數到href
<script id="searchTemplate" type="text/x-jquery-tmpl">
<a href="/Search/Details/${JournalId} WHAT GOES HERE? ">
</script>
public ActionResult Details(int id, string otherParameter)
{
var item = ctx.Journals.Find(id);
return View("Details", item);
}
完美!謝謝DanielB – 2011-05-06 13:17:37