MVC空模型问题
我创建了两个创建操作..一个用于调用创建视图,另一个用于使用 httppost 处理创建视图。
当我调用创建视图时,它会正确发布,下拉列表等等。 问题是,当我填写创建表单并单击提交按钮时,出现错误;
你调用的对象是空的。
我的第一个想法是我将空模型传递给 httppost 创建操作。 我如何检查是否将空模型传递给 httppost 创建操作?
谢谢
i have created two create actions..one to call the create view and the other to process the create view using httppost.
when i call the create view, it gets published correctly , dropdowns and all.
the problem is that when i fill out the create form and click on the submit button, i get an error;
Object reference not set to an instance of an object.
My first thoughts are that i am passing a null model to the httppost create action..
How can i check to see if i am passing in a null model to the httppost create action?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您到底在哪里得到这个异常?是在控制器操作中还是在渲染视图时?通常的范例如下:
Where exactly you are getting this exception? Is it in the controller action or while rendering the view? The usual paradigm is the following: