- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 ProductController
上执行 Detail(int id)
操作,我可以通过
/Product/Detail/32
但如果我这样做
Product/Detail
我还访问了同一个 Controller ,但没有传递 id
。怎么才能让参数成为必填项,否则返回404(根本不执行controller action,比如不匹配路由)
public ActionResult Detail(int id) {
// some fancy code that get the product by id
return View()
}
路线:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Application", action = "Index", id = UrlParameter.Optional } defaults);
我知道如果(未找到产品)返回 HttpNotFound()
我可以做,这适用于大多数情况,但我想知道是否有一种方法可以让 Controller Action 在没有通过的情况下甚至无法达到争论
编辑:
/ <-- homepage
/Product/List <-- List of products
/Product/Detail <-- return 404
/Product/Detail/10 <-- Product Details id 10
现在,我想知道是否有任何方法可以支持这种“简单”的场景。 Controller 上的操作是:
ApplicationController{
public ActionResult Index() {}
}
ProductController {
public ActionResult List(){}
public ActionResult Detail(int id){}
}
当前路由只是默认的:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Application", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
添加建议的路由没有按预期工作,因为要么在 /Product/Detail
上返回 404
但也在 上返回
和 404
>/Product/List/
。
或(其他建议)
ActionResult Detail(int id)
被调用或者没有在请求中发送参数,这是这个问题的目的是知道是否有可能不匹配 url /Product/Detail
完全没有它的 id 参数。
最佳答案
只需为它提供路由并删除 id
默认为可选参数:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index" } // defaults
);
但这些默认值永远不会被使用,所以:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}" // URL with parameters
);
这是需要定义的实际路线。
您的 controller
和 action
永远不会从 URL 中省略,因为 id
是必需的并且是 URL 中的最后一个定义,这意味着第一对也必须存在。
我不确定这是否正是您所需要的,但根据您问题的当前状态,这应该可以解决您的问题。但是如果你需要你的 id 有一些预定义的值,你可以在你的路由定义中给它一个不同的值:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = 1 } // defaults
);
这使得可以从 URL 中省略所有这三个,并且它们都将具有特定的值。
id
格式的路由约束您还可以使用路由约束来告诉路由 URL 参数应该是什么样子。由于您的 id
似乎必须是数字,这也是一种可能性:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index" }, // defaults
new { id = "\d+" } // constraints
);
实际上有两种方法可以解决您的问题。
id
的正确路由这个定义了几个路由定义,但是硬编码了需要 id
参数的操作:
routes.MapRoute(
"RequiresId",
"{controller}/{action}/{id}", // URL with parameters
null,
new { action = "Detail" }
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}" // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new { action = "(?!Detail).+" } // any action except "Detail"
);
第一个路由定义所有具有操作方法Detail
的 Controller 都需要id
参数。这很简单,只要具有这些操作的所有 Controller 具有相同的要求(您的情况可能就是这样)。但如果不是这样,事情就会变得更加复杂,因为您必须为每个 Controller 提供约束。
此解决方案仅需要带有可选 id
的默认路由。自定义操作方法选择器过滤器(鲜为人知且很少使用)将帮助您编写如下代码:
[RequiresRouteValues("id, name")]
public ActionResult Detail(int id, string name)
{
...
}
您可以将它放在那些需要它的方法上。如果该特定参数不存在, Controller 操作调用程序将无法找到合适的方法,因此返回 404。
我已经详细讨论了这个 on my blog .它还包括过滤器的代码,如下所示:
/// <summary>
/// Represents an attribute that is used to restrict action method selection based on route values.
/// </summary>
[SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public sealed class RequiresRouteValuesAttribute : ActionMethodSelectorAttribute
{
#region Properties
/// <summary>
/// Gets required route value names.
/// </summary>
public ReadOnlyCollection<string> Names { get; private set; }
/// <summary>
/// Gets or sets a value indicating whether to include form fields in the check.
/// </summary>
/// <value><c>true</c> if form fields should be included; otherwise, <c>false</c>.</value>
public bool IncludeFormFields { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to include query variables in the check.
/// </summary>
/// <value>
/// <c>true</c> if query variables should be included; otherwise, <c>false</c>.
/// </value>
public bool IncludeQueryVariables { get; set; }
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="RequiresRouteValuesAttribute"/> class.
/// </summary>
private RequiresRouteValuesAttribute()
{
this.IncludeFormFields = true;
this.IncludeQueryVariables = true;
}
/// <summary>
/// Initializes a new instance of the <see cref="RequiresRouteValuesAttribute"/> class.
/// </summary>
/// <param name="commaSeparatedNames">Comma separated required route values names.</param>
public RequiresRouteValuesAttribute(string commaSeparatedNames)
: this((commaSeparatedNames ?? string.Empty).Split(','))
{
// does nothing
}
/// <summary>
/// Initializes a new instance of the <see cref="RequiresRouteValuesAttribute"/> class.
/// </summary>
/// <param name="names">Required route value names.</param>
public RequiresRouteValuesAttribute(IEnumerable<string> names)
: this()
{
if (names == null || names.Count().Equals(0))
{
throw new ArgumentNullException("names");
}
// store names
this.Names = new ReadOnlyCollection<string>(names.Select(val => val.Trim()).ToList());
}
#endregion
#region ActionMethodSelectorAttribute implementation
/// <summary>
/// Determines whether the action method selection is valid for the specified controller context.
/// </summary>
/// <param name="controllerContext">The controller context.</param>
/// <param name="methodInfo">Information about the action method.</param>
/// <returns>
/// true if the action method selection is valid for the specified controller context; otherwise, false.
/// </returns>
public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo)
{
if (controllerContext == null)
{
throw new ArgumentNullException("controllerContext");
}
// always include route values
HashSet<string> uniques = new HashSet<string>(controllerContext.RouteData.Values.Keys);
// include form fields if required
if (this.IncludeFormFields)
{
uniques.UnionWith(controllerContext.HttpContext.Request.Form.AllKeys);
}
// include query string variables if required
if (this.IncludeQueryVariables)
{
uniques.UnionWith(controllerContext.HttpContext.Request.QueryString.AllKeys);
}
// determine whether all route values are present
return this.Names.All(val => uniques.Contains(val));
}
#endregion
}
第一个使具有多个 Controller 和与之相关的不同约束的应用程序变得复杂。第二种优雅,适用于简单和复杂的场景。
我当然会选择方案 2。但在这种情况下,请将我视为有偏见的开发人员。
关于asp.net-mvc - 有没有可能是MVC应用中controller参数需要,路由不匹配空参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13820866/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!