ASP.NET 中继器问题

本文关键字:问题 中继器 NET ASP | 更新日期: 2023-09-27 18:31:16

我是 .NET 开发的新手,我遇到了一些数据未显示在我的中继器中的问题。

我有一个 XML 文件,我正在反序列化并使用转发器来显示该数据。我的问题是位置和薪水数据没有显示,其他所有XML元素都显示出来。

我不确定如何访问"工作地点"类并显示"工资和位置"。

。.xml

<?xml version="1.0" encoding="utf-8" ?>
<Jobs>   
  <Job Category="Administration" Title="Senior Human Resource Coordinator">
    <Description>
      <![CDATA[ Long description of the job goes here. ]]>
    </Description>
    <ShortDescription>
      <![CDATA[ Short description of the job goes here.  ]]>
    </ShortDescription>
    <JobLocations>
      <Location Salary="$50000">Toronto</Location>
      <Location Salary="£35000">London</Location>
    </JobLocations>
    <Benefits>Drug, Dental, Optical and Extended Healthcare Benefits</Benefits>
    <Jobtype>Full-Time</Jobtype>
  </Job>
</Job>

。.cs

[Serializable]
public class Job
{        
    [XmlAttribute]
    public string Category { get; set; }
    [XmlAttribute]
    public string Title { get; set; }
    [XmlElement]
    public string Description { get; set; }
    [XmlElement]
    public string ShortDescription { get; set; }
    [XmlElement("JobLocations")]
    public List<JobLocations> JobLocation { get; set; }
    public string Benefits { get; set; }
    [XmlElement]
    public string Jobtype { get; set; }                

    public class JobLocations
    {
        [XmlAttribute("Salary")]
        public string Salary { get; set; }
        [XmlText]
        public string Location { get; set; }
    }
    public static List<Job> Load( string path )
    {
        return SerializerSupport.DeserializeList<Job>(System.IO.Path.Combine( path, "jobs.xml" ) );
    }

。.aspx

<asp:Repeater ID="Job" runat="server" ItemType="Job" SelectMethod="JobGrid_GetData">
        <ItemTemplate>
          <div class="flex-item">
            <div>Title: <%#Item.Title%></div>
            <div>S.Desc: <%#Item.ShortDescription%></div>
            <div>Location: ??? </div>
            <div>Salary: ??? </div>
            <div>Category: <%#Item.Category%></div>
            <div>Jobtype: <%#Item.Jobtype%></div>
            <div>Benefits: <%#Item.Benefits%></div>  
            <div>Desc: <%#Item.Description%></div>
          </div>  
        </ItemTemplate>        
    </asp:Repeater>

.aspx.cs

public partial class JobCategories : BasePage
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }
    public IEnumerable<Job> JobGrid_GetData()
    {
        return DataCache.Instance.Jobs;
    }
    public IEnumerable<Job> Jobs_GetData()
    {
        return null;
    }
    public static IEnumerable<Job> JobGrid_DistinctCategories()
    {
        return DataCache.Instance.Jobs.GroupBy(p => p.Category).Select(g => g.First()).ToList();
    }
}

ASP.NET 中继器问题

您的位置和工资数据不会直接存储在Job中。它们存储在 JobJobLocation 属性中,这是一个集合对象。这就是为什么你不能像<%#Item.Salary%></div>一样访问它们,因为有多个薪水/地点。

根据您希望如何显示数据,您可能需要具有显示工资的嵌套转发器或其他控件。

<asp:Repeater ID="Job" runat="server" ItemType="Job" SelectMethod="JobGrid_GetData">
        <ItemTemplate>
          <div class="flex-item">
            <div>Title: <%#Item.Title%></div>
            <div>S.Desc: <%#Item.ShortDescription%></div>
            <div>
                <asp:Repeater runat="server" ItemType="JobLocations" DataSource="<%# Item.JobLocation %>">
                    <ItemTemplate>
                        <div>Location: <%#Item.Location%> </div>
                        <div>Salary: <%#Item.Salary%> </div>
                    </ItemTemplate>
                </asp:Repeater>
            </div>
            <div>Category: <%#Item.Category%></div>
            <div>Jobtype: <%#Item.Jobtype%></div>
            <div>Benefits: <%#Item.Benefits%></div>  
            <div>Desc: <%#Item.Description%></div>
          </div>  
        </ItemTemplate>        
    </asp:Repeater>

另一种方法是 foreach 循环,但这些循环最终看起来有点丑陋,所有<%标记都散落在各处。如果您没有停留在 Web 窗体上,那么切换到 MVC 以便您可以使用 Razor 标记将是一种改进。

foreach(var job in jobs)
{
    <div>Title: @job.Title</div>
    <div>S.Desc: @job.ShortDescription</div>
    ...etc...
    foreach(var jobLocation in job.JobLocation)
    {
        <div>Location: @jobLocation.Location</div>
        <div>Salary: @jobLocation.Salary</div>
    }
    <div>Category: @job.Category</div>
    ...etc...
}

应重命名 JobLocationsJobLocationJob.JobLocation属性应重命名Job.JobLocations以符合正常的 C# 约定。这是因为该属性表示作业位置的集合,因此将名称复数化是有意义的。但是,该类表示单个实例,因此不要复数名称。