ASP.NET MVC 3 RemoteAttribute 和关注点分离

发布于 2024-10-21 12:29:43 字数 87 浏览 1 评论 0 原文

当您在模型属性上使用 RemoteAttribute 来指示要调用的操作和控制器时,这是否违反了关注点分离原则?它使您可以通过字符串参数将模型绑定到特定控制器。

Isn't it a violation of separation of concerns principle when you use the RemoteAttribute on your model's property to indicate what action and controller to call? It makes you tie your model to a specific controller via string arguments.

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

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

发布评论

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

评论(1

孤寂小茶 2024-10-28 12:29:43

是的,确实如此,但使用所有其他 DataAnnotations 属性也是如此。

幸运的是,MVC 中的模型元数据系统是可插入的,因此您可以编写自己的元数据提供程序,该元数据提供程序不依赖于模型类上的属性。

Yes it does, but so does using all the other DataAnnotations attributes.

Fortunately the model metadata system in MVC is pluggable so you could write your own metadata provider that's not tied to attributes on a model class.

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