如何在 ASP.NET 核心 Razor 页面中绑定复杂列表

How can I bind complex Lists in ASP.NET Core RazorPages

我是 ASP.NET Core Razor Pages 的新手。我尝试通过 POST 从页面检索 List<>。如果我绑定原始数据类型,我没有遇到任何问题。但是,如果我想将数据从我的页面传递到包含列表的服务器,我就遇到了麻烦。我能够将数据从服务器传递到客户端,但不能返回。

这是我的代码的摘录:

剃刀页面:

<form method="post">
    <table class="table">
        <thead>
            <tr>
                <th>
                    @Html.DisplayNameFor(model => model.Positions[0].Number)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.Positions[0].IsSelected)
                </th>
            </tr>
        </thead>
        <tbody>
            @if (!(Model.Positions is null))
            {
                @foreach (var item in Model.Positions)
                {
                    <tr>
                        <td>
                            @Html.DisplayFor(modelItem => item.Number)
                        </td>
                        <td>
                            @Html.CheckBoxFor(modelItem => item.IsSelected)
                        </td>
                    </tr>
                }
            }
        </tbody>
    </table>
    <input type="submit" />

后端 C# 文件:

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using Project.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.EntityFrameworkCore;

namespace Project.Pages
{
    public class TestModel : PageModel
    {
        private readonly DBContext _context;


        [FromRoute]
        public int? Id { get; set; }
        public List<SelectListItem> CustomerOrder { get; set; } = new List<SelectListItem>();
        [BindProperty]
        public string SelectedNumber { get; set; }
        [BindProperty]
        public List<Position> Positions { get; set; }
        public TestModel(Project.Models.DBContext context)
        {
            _context = context;
        }
        public void OnGet()
        {
            if (!(Id is null))
            {
                _context.CustomerOrder.Select(co => co.OrderNumber).Distinct().ToList().ForEach(y => CustomerOrder.Add(new SelectListItem(text: y, value: y)));
            }
        }

        public async Task OnPostAsync()
        {
            if (!(SelectedNumber is null))
            {
                string s = $@"
                select * from Table1 xyz where xyz.Column1 in (
                    SELECT distinct Column1
                    FROM Table1
                    where value = '" + SelectedNumber + "') and xyz.name = 'SLLZ'";

                var res = await _context.Table1.FromSql(s).Select(x => x.ValueDescription).Distinct().OrderBy(x => x).ToListAsync();

                Positions = new List<Position>();
                foreach (var item in res)
                {
                    Positions.Add(new Position { Number = item });
                }


            }
            _context.CustomerOrder.Select(co => co.OrderNumber).Distinct().ToList().ForEach(y => CustomerOrder.Add(new SelectListItem(text: y, value: y)));

        }
    }
    public class Position
    {
        public string Number { get; set; }
        public bool IsSelected { get; set; }
    }
}

如果我在 OnPost-Method 的开头设置断点,我希望列表中会填充与用户在复选框中的输入相关的 IsSelected-属性,但事实并非如此.

复杂对象绑定的关键是确保将方括号中的顺序索引添加到表单字段的名称属性中,例如 [0].IsSelectedPositions[0].IsSelected。您可以很容易地使用 for 循环和标记助手输出正确的 HTML。

您可以在此处阅读有关校长的更多信息:https://www.learnrazorpages.com/razor-pages/model-binding#binding-complex-collections。然后你应该可以将它应用到你的应用程序中。