【发布时间】:2015-03-05 08:47:20
【问题描述】:
我正在使用 angularjs,我想从一个名为 cycle 的表中进行搜索,如下所示,我想使用 weeks in cycle 搜索屏幕截图 1 的数据。当我搜索屏幕截图 1 时,数据必须显示在屏幕截图 2 上,当我在屏幕截图 2 上选择时,必须返回屏幕截图 1 并显示所选的详细信息,我该如何实现这一点,请帮忙。
型号
public partial class Cycle
{
public int CycleID { get; set; }
public Nullable<System.DateTime> StartDate { get; set; }
public Nullable<System.DateTime> EndDate { get; set; }
public string Cycle1 { get; set; }
public Nullable<int> WeeksInCycle { get; set; }
}
屏幕截图 1
屏幕截图 2
【问题讨论】:
标签: javascript c# html angularjs