使用 MVC 在 jQuery 模板中向 href 添加两个参数

发布于 2024-11-05 08:11:24 字数 469 浏览 0 评论 0原文

我希望我已经提供了足够的信息来帮助别人。 (我已经删除了我认为不相关的代码段)

我有一个 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);
    }

I am hoping I have given enough information for someone to help.
(I have cut out the bits of code that I felt were not relevant)

I have a jquery template, inside of which is a link that returns an id to an ActionResult.
My question is: what is the syntax for adding another parameter to the link so the ActionResult receives two parameters.

<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);
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南汐寒笙箫 2024-11-12 08:11:24
<script id="searchTemplate" type="text/x-jquery-tmpl">
  <a href="/Search/Details/${JournalId}?otherParameter=value">
</script>
<script id="searchTemplate" type="text/x-jquery-tmpl">
  <a href="/Search/Details/${JournalId}?otherParameter=value">
</script>
等风来 2024-11-12 08:11:24

是的,这会起作用,但 MS MVC 中的“最佳实践”方式是在 Global.asax 中创建一个新路由。

public static void RegisterRoutes(RouteCollection routes)
{
// callable like this: <a href="/Search/Details/${JournalId}/value"> 
routes.MapRoute(
            "MyNewRouteName",
            "MyController/SomeCoolAction/{id}/{otherParameter}",
            new { controller = "MyController", action = "SomeCoolAction"}
            );

....
}

Yes, that will work, but the "best practices" way in MS MVC is to create a new Route in the Global.asax.

public static void RegisterRoutes(RouteCollection routes)
{
// callable like this: <a href="/Search/Details/${JournalId}/value"> 
routes.MapRoute(
            "MyNewRouteName",
            "MyController/SomeCoolAction/{id}/{otherParameter}",
            new { controller = "MyController", action = "SomeCoolAction"}
            );

....
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文