(我是SCORM和Web Development的新手,请原谅我,如果我没有解释得太好的话。)
我正在尝试运行一些SCORM课程,并且一直按照本教程进行操作:http://www.vsscorm.net/2009/05/31/getting-started-the-rte-frameset/
但是,在本教程中,他们使用框架集和框架来建立从课程到API实现的这种连接。我需要在iframe中运行我的课程,并且不知道在何处/如何放置我的API文档,以便我的SCORM课程可以找到它并连接到它,有人知道怎么做?
答案 0 :(得分:2)
在典型的SCORM课程中,API连接在父框架中维护,而课程内容则加载到子框架(iframe)中。 iframe中的内容可以随意加载和卸载; iframe中的内容往往包含您希望在课程的整个生命周期中进行的重要SCORM调用,例如得分和完成状态,但是他们会通过将信息中继到父框架来实现这一目标,父框架拥有与LMS沟通。
以下是使用SCORM 1.2的快速示例(未在LMS中测试,准系统,需要充实)
index.html(父框架)
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Course Title</title>
<style>
/* Use CSS to make the iframe fill the parent frame,
giving impression no frames are being used */
body { padding: 0; margin: 0; overflow: hidden; }
iframe { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: auto; }
</style>
</head>
<body>
<iframe src="" id="course-content" frameborder="0"></iframe>
<script>
//Place initialization routine here.
//Connect to SCORM API, run API.LMSInitialize()
var SCORM_API = window.API; //shortcut reference
function setScore(score){
SCORM_API.LMSSetValue("cmi.core.score.raw", score);
}
function setStatus(status){
SCORM_API.LMSSetValue("cmi.core.lesson_status", status);
}
function endCourse(){
SCORM_API.LMSCommit();//Save, just in case
SCORM_API.LMSFinish();//Close API connection
}
SCORM_API.LMSInitialize();
//Load child frame once SCORM_API is ready
document.getElementById("course-content").setAttribute("src", "content.html");
</script>
</body>
</html>
content.html(子框架)
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Course Content</title>
</head>
<body>
<p>This is the content of the course. Add scripts to make it do something.</p>
<script>
//Place course functionality here, such as setting a bookmark or score.
//'parent' is the parent frame.
//This is a very arbitrary example of what you can do when a course loads
parent.setScore("100");
parent.setStatus("completed");
parent.endCourse();
</script>
</body>
</html>
您通常希望使用SCORM包装器来处理一些繁重的工作,并且您希望使用abstraction layer来提高代码可维护性并将SCORM命令集中在父框架中。 endCourse()
函数是抽象层的一个非常简单的例子。您可以调用一个函数,而不是直接在子框架中调用API。