私は人々からメタデータとマニフェストファイルを取得し、それを起動すると、ウィンドウが小さすぎるか大きすぎます。私のスクラム コントローラーでは、サイズを変更して新しい値を保存できるようにしています。
[HttpGet]
[NoCache]
public JsonResult ToggleLaunchResize(int scormModuleId)
{
var module = ZincService.ScormService.GetScormModule(scormModuleId);
if (module != null)
{
try
{
module.LaunchResize = !module.LaunchResize;
ZincService.ScormService.UpdateScormModuleSettings(module);
ZincService.SaveChanges();
return Json(new { hasLaunchResize = module.LaunchResize ? "Yes" : "No" }, JsonRequestBehavior.AllowGet);
}
catch (Exception ex)
{
Logger.Error(ex, "Error toggling HasLaunchResize property for scorm module with Id " + scormModuleId);
return Json(new { hasLaunchResize = "unkown" }, JsonRequestBehavior.AllowGet);
}
}
else
return Json(new { success = false }, JsonRequestBehavior.AllowGet);
}
はいを選択した場合、ウィンドウのサイズを変更できないのはなぜですか? 私は初心者なので、これがどのように機能するのかまだわかりません。助けてください?
ありがとう