带有字符串参数的 ASP.net MVC 控制器操作不会被调用

发布于 2024-09-17 19:48:07 字数 388 浏览 2 评论 0原文

因此,我有一个带有此签名的控制器操作

  public ActionResult Details(string id) { ... }

,并且在我的全局 asax 文件中有一个路由

            routes.MapRoute(
            "DevDetails",
            "Dati/Device/Details/{id}",
            new { controller = "Device", action = "Details", id = "" });

当且仅当我请求 id 以“%20”结尾的 url 时,操作控制器不会被调用。

有什么线索吗?

So, I have a controller Action with this signature

  public ActionResult Details(string id) { ... }

and a route in my global asax file

            routes.MapRoute(
            "DevDetails",
            "Dati/Device/Details/{id}",
            new { controller = "Device", action = "Details", id = "" });

If and only if I request urls which id ends with '%20' the action controller doesn't get called.

any clues ?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文