ASP.NET MVC ViewSource 代码完整缩进
是否有一种使用 MVC 解决方案自动输出完整缩进代码的方法?
当我的 HTML 输出时,partialviews 和 childviews 中的代码不会缩进,因为它没有这样声明(想象一下我必须缩进多少个选项卡才能缩进,这在 VStudio 中是难以辨认的)。
Is there an automatic way to output full indent code using a MVC solution?
When my HTML is output the code inside partialviews and childviews is not indented because it's not declared so (imagine how many tabs i have to indent to become indent, and that is illegible inside VStudio).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该格式化您的代码,以便查看 |来源已缩进。
相反,如果您需要探索 HTML 语法的结构作为浏览器的输出,请使用 FireBug 或 Chrome 开发人员工具之类的工具,它们会以可用的方式自动缩进和构建浏览器的 HTML。
像这样:
You shouldn't format your code so that View | Source is indented.
Rather, if you need to explore the structure of your HTML syntax as output to the browser, use something like FireBug or the Chrome developer tools that automatically indent and structure the browser's HTML in a usable way.
Like so: