ASP.NET MVC 嵌套对象的字段命名约定

发布于 2024-08-21 10:17:47 字数 533 浏览 8 评论 0原文

我正在使用 ASP.NET MVC 1.0。 我正在创建一个视图来创建以下类的新对象

public class ClassOne
{
    public string Name {get; set;}
    public string Id {get; set; }
    public CaptionItem Caption {get; set;}
}

public class CaptionItem
{
    public string CaptionSet {get; set;}
    public string Text {get; set;}
}

该视图将具有用于输入名称、Id 和标题文本的字段。提交表单后,ClassOne 对象被发送到控制器,该控制器应该将该对象保留在数据库中。

问题是;应该使用什么命名约定,以便我可以将对象发送到控制器,因为

public ActionResult SaveObject(ClassOne objectToSave)

挑战是标题对象

I am using ASP.NET MVC 1.0.
I am creating a view to Create a new object of the following class

public class ClassOne
{
    public string Name {get; set;}
    public string Id {get; set; }
    public CaptionItem Caption {get; set;}
}

public class CaptionItem
{
    public string CaptionSet {get; set;}
    public string Text {get; set;}
}

The view will have fields to input Name, Id and the Text of the caption. On submitting the form the ClassOne object is sent to the controller which is supposed to persist the object in the database.

The question is; what should be the naming conventions used so that I can send the object to the controller as

public ActionResult SaveObject(ClassOne objectToSave)

The challenge is the Caption object

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

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

发布评论

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

评论(1

等风来 2024-08-28 10:17:47

你是对的,要进入文本字段,你必须输入 Caption.Text :)

you're right, to get to Text field you have to type Caption.Text :)

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