ASP.NET MVC 的 Lint?

发布于 2024-10-25 12:16:26 字数 99 浏览 3 评论 0原文

是否有适用于 ASP.NET MVC 的 lint 实用程序?鉴于我经常通过字符串指定视图和链接,当我移动事物或更改实体名称时,我经常会破坏事物,然后只有在运行时出现故障时我才会发现。

Is there a lint utility for ASP.NET MVC? Given that I frequently specify views and links via strings, when I move things around or change entity names I often break things, which I then only find out about when something fails at runtime.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

九公里浅绿 2024-11-01 12:16:45

我不知道有类似的东西,但我会告诉你我做了什么:我所有的视图名称都在包含字符串常量的结构中。随着项目的变化保持同步是很痛苦的,但这是值得的,因为如果你使用

ViewNames.Customer

而不是

"customer"

I don't know that there's something like that, but I'll tell you what I do: All my view names are in a struct that contains string constants. It's a pain to keep it sync'ed as the project changes, but it's worth it because you're far more likely to catch errors if you're using

ViewNames.Customer

rather than

"customer"
微暖i 2024-11-01 12:16:44

其他选项——使用强类型助手(可能仍然在 futures 程序集中)。 EG, Html.Action(x => x.ShowProduct(id)) ;确实是飞翔的唯一方法。

Other option -- use the strongly typed helpers (which might still be in the futures assemblies). EG, Html.Action<ProductsController>(x => x.ShowProduct(id)) ; really the only way to fly.

蓝礼 2024-11-01 12:16:43

ReSharper 的 v6(如果您不介意生活在边缘,现在可以使用其夜间模式)将为您捕获此类错误。

ReSharper's v6 (whose nightlies are now available, if you don't mind living on the edge) will catch this kind of error for you.

一抹苦笑 2024-11-01 12:16:43

您可以使用重构->重命名并启用“在字符串中搜索”以替换解决方案中的每个字符串

You can use Refactor -> Rename and enable Search in Strings to replace every string in the solution

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文