MVC 中的内容文件夹约定
我想知道 ASP.NET MVC 项目中 /contents 文件夹的约定背后的历史是什么; 它的起源地; 以及其背后的原因。
我们的团队正在考虑将 /images 和 /styles 移出 /contents,以减少项目中的文件夹级别。 很高兴知道为什么要召开这次会议。
I am wondering what the history behind the convention for a /contents folder in ASP.NET MVC project is; where it originates; and the reasoning behind it.
Our team is considering to move our /images and /styles out of /contents to decrease the folder levels in the project. It will be nice to know why the convention was in place in the first place.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是框架方面组织文件的努力,并且大多数 MVC 框架都遵循“约定优于配置”的方式,因此如果遵循此约定,则可以轻松开发可以利用此约定的库和插件约定
for.ex。 您可以构建一个 HtmlHelper 调用 LoadAndPackScripts ,它将在您的内容目录中查找 javascript 文件,将它们打包并包含在您的项目中
it is an effort from the Frameworks side to organize your files and it is the "Convention over Configuration" way which most of the MVC frameworks follow so if you follow this convention it will be easy to develop libraries and plugins which can make use of this convention
for.ex. you can build an HtmlHelper call LoadAndPackScripts which will go and look for javascript files in your content directory pack them and include them in your project