誰かが助けてくれませんか、私が間違っていることを知りません:
私のビューモデル:
public class ScormModuleViewModel
{
public IEnumerable<ScormModuleInfo> ScormModuleInfo { get; set; }
public int CurrentPage { get; set; }
public int PageSize { get; set; }
public double Total { get; set; }
public int RecordsPerPage { get; set; }
}
次に私のコントローラー:
public ActionResult Index(int? page)
{
List<ScormModuleInfo> modules = new List<ScormModuleInfo>();
foreach (var directory in Directory.EnumerateDirectories(scormRootDir))
{
ScormModuleInfo module = new ScormModuleInfo();
module.ScormModule = ZincService.ScormService.GetScormModule(scormTitle, scormDirectory);
if (module.ScormModule != null)
module.Installed = true;
else
{
module.Installed = false;
module.ScormModule = new ScormModule();
module.ScormModule.Directory = scormDirectory;
module.ScormModule.Title = scormTitle;
}
module.ScormModule.EntryPointRef = scormEntryPointRef;
module.ScormModule.IdentifierRef = scormIdentifierRef;
module.ScormModule.LaunchHeight = scormLaunchHeight;
module.ScormModule.LaunchWidth = scormLaunchWidth;
module.ScormModule.LaunchResize = scormLaunchResize;
module.ScormModule.RelativeHtmlPath = scormRelativeHtmlPath;
module.ScormModule.SchemaVersion = scormSchemaVersion;
if (module.Installed)
{
// TODO: Save changes to module
//ZincService.ScormService.UpdateScormModuleSettings(
}
modules.Add(module);
noOfScormPackages++ ;
}
}
ScormModuleViewModel model = new ScormModuleViewModel();
model.ScormModuleInfo = modules;
model.CurrentPage = page.GetValueOrDefault(1);
model.PageSize = PageSizeSettings.ScormPackages;
model.Total = noOfScormPackages;
// Now iterate over modules and read imsmanifest.xml file for details of entry point and resources required.
return View(model);
}
そして私の見解:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<List<Zinc.Web.Areas.Admin.ViewModels.Scorm.ScormModuleViewModel>>" %>
foreach (var module in Model)
{ %>
<li>
<div class="col1">
<a href='javascript:LoadTrainingModuleWithDedicatedAPIObj("<%= module.ScormModuleInfo.r .sc.ScormModule.RelativeHtmlPath %>/<%= module.ScormModule.EntryPointRef %>", "<%: module.ScormModule.Title %>", "<%: module.ScormModule.LaunchWidth %>", "<%: module.ScormModule.LaunchHeight %>");'>
<% if (module.ScormModule.Title.Length < 70)
{ %>
<%: module.ScormModule.Title%>
<% }
else
{ %>
<%: module.ScormModule.Title.Substring(0, 70)%>....
<% } %>
</a>
</div>
すべてのモジュールの下にレッドラインが表示されます。プロパティ?私は理解していません、私は何を間違っていますか?ありがとう