我希望我已经提供了足够的信息来帮助某人。(我已经删除了我认为不相关的代码)
我有一个 jquery 模板,其中有一个将 id 返回到 ActionResult 的链接。我的问题是:向链接添加另一个参数的语法是什么,以便 ActionResult 接收两个参数。
<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);
}