ASP.NET MVC Default Project Structure and the Scripts Folder

醉酒当歌 提交于 2019-11-28 08:02:34

问题


Is there any advantage to leaving the Scripts folder where it is in the default ASP.NET MVC Project structure.

In my mind it makes more sense to create subfolders for scripts, css files, and images under the Content folder.

Any downside to doing this?


回答1:


In short, no, there is no real downside to doing this. It is how I have been structuring my MVC projects.

There are some advantages to doing this, actually... on many projects I am serving up all of the static content from a separate domain, so grouping all of the static content into a single folder has made the QA/production deployment process much easier (since we are scripting deployments with MSBuild and calling out to minify utilities for the CSS and Javascript files).




回答2:


Minor downside is having to look in multiple places for the 'bits' of each add-on framework etc. you may have. Hence, I prefer \assets\ - then within each framework folder (jquery, bootstrap etc) I have all the .JS & .CSS etc files and/or subfolders that come with that product. However, MVC bundling helps by allowing you to have all your references in the one BundleConfig module/class if you wish.



来源:https://stackoverflow.com/questions/2111303/asp-net-mvc-default-project-structure-and-the-scripts-folder

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!