asp.net mvc 通用控制器
我正在考虑在 ASP.NET MVC 中实现通用控制器。
PlatformObjectController<T>
其中 T 是(生成的)平台对象。
这可能吗?有经验/文档吗?
例如,一个相关问题是生成的 URL 是如何的。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你只是不能直接使用它,但你可以继承它并使用这里的子项,
这是我使用的:
和用法:
代码在这里:
http://code.google.com /p/asms-md/source/browse/trunk/WebUI/Controllers/FieldController.cs
更新:
现在使用此方法:http://prodinner.codeplex.com
yes it is, you just can't use it directly but you can inherit it and use the childs
here is one that I use:
and usages:
the code is here:
http://code.google.com/p/asms-md/source/browse/trunk/WebUI/Controllers/FieldController.cs
update:
using this approach here now: http://prodinner.codeplex.com