2011-01-06 4 views
0

私はScorm MVCプロジェクトに取り組んでいます。基本的には、csクラスファイルから部分的なビューを更新する必要があります。MVC Scorm sequencing PartialViewに関する問題

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> 
    <h2>Table of Contents Test</h2> 
    <br /> 
    <div id="SCONavBar"> 
     <% XElement item = (XElement) Model; 
      String rootID = (String) ViewData["courseRoot"]; 
      String resource = (String) ViewData["resource"]; %> 
     <button id="prev" onclick="javascript:NavigationRequest('', '<%: resource %>', 'previous');">Previous</button> 
     <button id="cont" onclick="javascript:NavigationRequest('', '<%: resource %>', 'continue');">Continue</button> 
     <button id="start" onclick="javascript:NavigationRequest('', '<%: resource %>', 'start');">Start Course</button> 
    </div> 
    <div id="scoContainer"> 
     <div id="treeContainter" style="display:inline-block; outline:black solid 1px; height:600px; width:300px; overflow:scroll; padding:2px;"> 
      <ul id="treeview"> 
       <% Html.RenderPartial("~/Views/Content/ActivityTreeUserControl.ascx", item); %> 
      </ul> 
     </div> 
     <div id="contentContainer" style="vertical-align:top; display:inline-block; outline:black solid 1px;"> 
      <% Html.RenderPartial("~/Views/Content/ContentFrame.ascx"); %> 
     </div> 
    </div> 
    <script type="text/javascript" src="../../Scripts/TreeView/TOCControlScript.js"></script> 
    <script type="text/javascript" src="../../Scripts/TreeView/resizeFrame.js"></script> 
    <script type="text/javascript" src="../../Scripts/Scorm/loungeScormMethods.js"></script> 
    <script type="text/javascript"> 
     $(document).ready(function() { 
      startTree(); 
     }); 
    </script>  
</asp:Content> 

上記は私の見解のコードです。最初のロードでは、目次の部分ビューとIframeの部分ビューが読み込まれます。私の個人的なStart、Cont、およびPrevボタンをクリックすると、AJAXリクエストはシーケンサーを経由して次のコンテンツへのリンクを返し、JavaScriptのiframeのソースを更新します。これは正常に動作します。

Javascriptを

function sendToFrame(source) { 
window.frames.SCODisplay.location.href = source; 

}

function NavigationRequest(id, resource, type) { 
    var result = null; 
    $.ajax({ 
     type: 'POST', 
     url: '/Content/NavigationRequest/', 
     data: {type : type}, 
     async: false, 
     success: function (data) { 
      result = data; 
     } 
    }); 
    if (result != null && result != "") { 
     var source = "../Content/" + resource + "/" + result; 
     sendToFrame(source, id) 
    } 
} 

今、コンテンツが時々、内部コンテンツにボタンを経由してナビゲートすることができます。コンテンツはAPIラッパーを呼び出して、データ・モデルに、終了後に続行要求に従わなければならないという事実を送信します。どちらがうまくいくの?

私の問題は、システムの終了時に継続要求が必要であることを知っているため、次のコンテンツの内容とそのリンクを把握することです。私は

public static String Terminate() { 
      //set entry to "" or resume, available to next learner session in current learner attempt 
      //if exit is set to suspend via nav request suspend all then entry set to resume upon next attempt on activity 
      //if exit anything other than suspend or no value set entry to "" 
      //when exit = suspend - save cmi.suspend_data to session 
      //decide whether to persist data 
      //save info to db using entities then call commit() 
      cocdType cmi; 
      try { 
       cmi = (cocdType)HttpContext.Current.Session["cmi"]; 
      } catch { 
       return "false"; 
      } 
      if (cmi.adlNavRequest != "_none_") { 
       SeqObject seqObj = new SeqObject(); 
       seqObj.currentRequestType = SeqObject.type.Navigation; 
       seqObj.data.Navigation = cmi.adlNavRequest; 
       seqObj = loungeScormSeqNavHandler.SequencingProcess(seqObj); 

       NEED TO FIRE OFF IFRAME CHANGE SOURCE FROM HERE 
      } 
      return "true"; 
     } 

はこのメイクセンスをい....ここからのiframeのソースを更新する方法を見つける必要がある、任意のヘルプは大歓迎です。

答えて

0

私は回避策を思いついた。

私の終了関数は、iframeと元のajax呼び出しに必要なフルリンクを返します。結果が真であるか偽であるか、空白かヌルかどうかを判断するのは簡単です。そこ。その後、結果をtrueまたはfalseに設定します。

関連する問題