ASP.NET MVC 中的不同模型、相同数据

发布于 2024-12-07 21:26:04 字数 250 浏览 2 评论 0原文

我们有一个 ASP.NET MVC 网站,有两个主要模型 /Account 和 /Store。帐户模型专用于用户注册、密码恢复、个人资料更新等,而商店模型专用于购物车和结帐管理。

在购买过程中,我们希望让用户能够登录(并最终恢复密码)、更新他/她的个人资料数据等。这涉及访问 /Account 模型的数据以及返回原始购买的需要处理页面。

使用 MVC 实现此目的(跳转到其他地方并返回)的最佳方法是什么?

谢谢,

阿尔贝托

We have an ASP.NET MVC website with two main models /Account and /Store. Account model is dedicated to user registration, password recovery, profile update, etc. while the Store one is dedicated to shopping cart and checkout management.

During the purchase process, we want to give the user the ability to login (and eventually recover password), update his/her profile data, etc. This involves accessing the data of the /Account model and the need to return to the original purchase process page.

What is the best way to accomplish this (jump elsewhere and return) with MVC?

Thanks,

Alberto

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

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

发布评论

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

评论(1

独留℉清风醉 2024-12-14 21:26:04

阿尔贝托,
如果这些类确实是模型,那么您在任何控制器中使用它们都没有问题。
最好的方法是使用分部视图并从控制器中调用它们。

我希望这对您有帮助,如果您需要更多说明,请告诉我。

亚历山大

Alberto,
If these classes are really models then you have no problem to use them in any controller.
The best way is to use partial views and just invoke them from your controller.

I hope this helps you, let me know if you require more clarification.

Alexander

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