定制模型活页夹

发布于 2024-10-19 00:04:03 字数 94 浏览 4 评论 0原文

我想创建一个自定义模型活页夹。

假设有 20 个属性。我只需要手动绑定其中五个。我想像默认绑定器一样自动绑定其他 15 个属性。

这有可能吗?

I'd like to create a custom model binder.

Let's say there're 20 properties. I need manualy bind only five of them. I'd like to bind the other 15 properties automatic like the default binder does.

Is this somehow possible ?

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

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

发布评论

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

评论(3

剧终人散尽 2024-10-26 00:04:03

当然,您至少可以做的就是继承 DefaultModelBinder,重写 BindModel(...) 方法并使用 base.BindModel(...)< /code> 为你想要的任何东西。之后,只需为其他任何内容提供您自己的绑定逻辑即可。

Sure, the very least thing you can do is inherit DefaultModelBinder, override the BindModel(...) method and use base.BindModel(...) for whatever you want. After that just provide your own binding logic for anything else.

一个人的旅程 2024-10-26 00:04:03

几天前我遇到了这样的问题,我通过填充构造函数内的默认属性解决了这个问题。通过这种方式,即使我没有“作者”字段,我也可以毫无问题地传递模型:

public class Post
{
    private string title;
    private string author;
    private string content;

    public string Title
    {
        get { return title; }
        set { title = value; }
    }

    public string Author
    {
        get { return author; }
        set { author = value; }
    }

    public string Content
    {
        get { return content; }
        set { content = value; }
    }

    public Post()
    {
        this.author = "Davis";
    }
}

I had such problem few days ago and I have solved it by filling the default properties inside the constructor. In this way I just pass the model without any problem even if I don't have an "Author" field:

public class Post
{
    private string title;
    private string author;
    private string content;

    public string Title
    {
        get { return title; }
        set { title = value; }
    }

    public string Author
    {
        get { return author; }
        set { author = value; }
    }

    public string Content
    {
        get { return content; }
        set { content = value; }
    }

    public Post()
    {
        this.author = "Davis";
    }
}
心的憧憬 2024-10-26 00:04:03

这里 MVC 中的模型绑定器 是创建自定义模型绑定器以及如何创建自定义模型绑定器的一个很好的示例模型绑定器在 asp.net MVC 中工作。

Here model binder in MVC is a great example for creating custom model binder and how exactly model binder works in asp.net MVC.

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