在 MVC 项目之间共享部分视图 - 区域有帮助吗?
我们有一些部分视图需要在多个 MVC 项目中使用。有人成功做到这一点吗?
MVC 2 中的区域有什么用处吗?子区域项目是否可以使用父项目的部分视图,或者反之亦然?
谢谢 !
We have some partial views which need to be used in several MVC projects. Has anyone done this successfully?
Could Areas in MVC 2 be of any use ? Could a sub area project use a partial view from the parent project or the other way around?
Thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AFAIK 区域用于将一个项目分为不同的部分。
AFAIK Areas is for separating One Project to different sections.
我会考虑创建一个单独的库(对于隔离 UI 逻辑来说并不理想)或一个代码模板(与其他 Visual Studio 组件(例如入门工具包)非常相似)。在这种情况下,您可以跨项目封装可重用的 UI 组件。
I would consider creating either a separate library — not ideal for isolating UI logic — or a code template — very much like other Visual Studio components, e.g. starter kits, do it. In this case, you can encapsulate reusable UI components across projects.