FubuMVC:如何在控制器上创建零模型输出操作?
在 FubuMVC 中,当我希望控制器操作方法返回 json 结果时,我在该方法上使用 JsonEndpoint 属性。但是,我没有看到 void 方法的相应属性。
对于特定操作,我不想返回任何内容,但如果我有一个 void 返回结果 Fubu 会失败,因为它开始寻找与空模型匹配的视图。
是否有属性或简单的更改允许特定操作方法返回 void?
谢谢
In FubuMVC, when I want a controller action method to return a json result, I use the JsonEndpoint attribute on the method. However there is not a corresponding attribute for a void method that I can see.
For a particular action, I don't want to return anything, but if I have a void return result Fubu fails because it starts looking for a view to match an empty model to.
Is there a attribute or easy change to allow a particular action method to return void?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我更新到框架的新版本时,单模型输入、零模型输出控制器操作立即可用。我唯一不确定如何做的是无控制器视图。
When I updated to a newer version of the framework, one-model-in, zero-model-out controller actions became instantly usable. The only thing I'm not sure how to do is controller-less views.