我正在研究 asp.net mvc2 应用程序。我有一个 ViewModel 定义如下:
public class TestViewModel
{
/// <summary>
/// Get and Set the EnabledSections
/// </summary>
public List<string> EnabledSections { get; set; }
}
我正在使用操作方法中的列表填充 TestViewModel 的属性 EnabledSections :
public ActionResult TestAction(Student student, string[] sections = null)
{
var model = new TestViewModel
{
EnabledSections = model.TestSections.Where(s => s.Value.Item2 == true).Select(s => s.Key).ToList();
}
}
我需要在 jquery 方法中访问 EnabledSections :
function CheckEnabledSection(){
}
谁能指导我解决上述问题?