我的每个控制器方法都需要重定向回索引页面,并将它们发送回控制器的模型对象发送回控制器。但是,在一种情况下,我需要与模型对象一起发送一条错误消息。下面是 Index 方法的签名:
public ViewResult Index(ZipCodeIndex search, string unspecifiedAction = "")
由于我只需要一种方法的错误消息,因此我将此参数设为可选。这是我尝试从单独的操作重定向到索引的方式:
//the parameter 'updateZip' is a model object of type ZipCodeIndex
return RedirectToAction("Index", new { search = updateZip, unspecifiedAction = "Error: Action could not be determined. IT has been notified and will respond shortly."} );
所有这些最终都会将用户发送回原始页面,并显示错误消息“对象引用未设置为对象的实例”。
编辑
在控制器点击后,RedirectToAction
它只是退出控制器而不重定向到 Index 方法,并且视图上出现错误“对象引用未设置为对象的实例”。