您好,
我正在开发基于scorm的项目,我要玩2004年的scorm包。使用LMS函数(LMSFinish(),commit()..等),课程正在播放和捕获数据正常工作。
现在我要实现一个更多的功能,即RESUME包在哪里用户最后一次离开。
示例cmi数据
scoid:“1234”
数据[cmi.completion_status]:“不完整”
数据[cmi.exit]:“暂停”
data [cmi.location]:“page3”
希望你能帮忙。
答案 0 :(得分:3)
通常' cmi.suspend_data'用于存储字符串(JSON或其他分隔符格式,如果您需要或需要结构)来恢复答案。
' cmi.location'有1000个字符供您存储字符串,它可以像" 3"或"第3页"就像你拥有它一样。
您在内容演示文稿/播放器中的导航需要能够回复有位置。您可以使用suspend_data将学生答案放回原来离开时的状态。
您如何决定是否恢复'除了“cmi.entry'之外的任何事情都有点棘手。 =' ab-initio'是简历。一些LMS系统返回空白或恢复'所以你知道要取得你的cmi.location'和' cmi.suspend_data'如果你使用它。
这是您必须编写的所有代码,或者您可以在我的Wiki上阅读一些内容。 https://github.com/cybercussion/SCOBot/wiki
答案 1 :(得分:0)
我有一些简历的解决方法,并为我工作。我保存了suspended_data,然后检索了那些数据,以便玩家恢复该位置。
答案 2 :(得分:0)
@ kishor-koshti 我的意思是,您是如何告诉玩家从指定位置恢复比赛的? 我能够捕获suspended_data,但是我不知道下次下次启动该课程时如何将其设置回去。 我在javascript上拥有的API对象似乎是只读的。
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<style>
body { margin: 0; }
</style>
<script type="text/javascript">
var API = {};
function setupScormApi() {
API.LMSInitialize = LMSInitialize;
API.LMSGetValue = LMSGetValue;
API.LMSSetValue = LMSSetValue;
API.LMSCommit = LMSCommit;
API.LMSFinish = LMSFinish;
API.LMSGetLastError = LMSGetLastError;
API.LMSGetDiagnostic = LMSGetDiagnostic;
API.LMSGetErrorString = LMSGetErrorString;
}
function LMSInitialize(initializeInput) {
console.log("LMSInitialize: " + initializeInput);
// invokeCSharp("LMSInitialize: " + initializeInput);
return true;
}
function LMSGetValue(varname) {
console.log("LMSGetValue: " + varname);
//invokeCSharp("LMSGetValue: " + varname);
return "";
}
function LMSSetValue(varname, varvalue) {
console.log("LMSSetValue: " + varname + "=" + varvalue);
// invokeCSharp("LMSSetValue: " + varname + "=" + varvalue);
return "";
}
function LMSCommit(commitInput) {
console.log("LMSCommit: " + commitInput);
// invokeCSharp("LMSCommit: " + commitInput);
return true;
}
function LMSFinish(finishInput) {
console.log("LMSFinish: " + finishInput);
// invokeCSharp("LMSFinish: " + finishInput);
return true;
}
function LMSGetLastError() {
console.log("LMSGetLastError: ");
// invokeCSharp("LMSGetLastError: ");
return 0;
}
function LMSGetDiagnostic(errorCode) {
console.log("LMSGetDiagnostic: " + errorCode);
// invokeCSharp("LMSGetDiagnostic: " + errorCode);
return "";
}
function LMSGetErrorString(errorCode) {
console.log("LMSGetErrorString: " + errorCode);
// invokeCSharp("LMSGetErrorString: " + errorCode);
return "";
}
setupScormApi();
</script>
<iframe id="frm1" src="./Content/index_lms.html" style="width: 100%; height: 100%"></iframe>
</body>
</html>
答案 3 :(得分:0)
Mehonder 的 Exec 解决方案
// story_content/user.js
let lastSlideLoaded = ''; //global variable
function Script1() {
if (lastSlideLoaded == '') {
lastSlideLoaded = 'X';
var ACT_firstID = window.globals.parsedParams["last_slide"]; //URL Argument
if (!ACT_firstID == (null || "" || "0")) {
Jump_Slide(ACT_firstID); //Set Slide
}
} else {
SetLastSlide();
}
}
function SetLastSlide() {
// send to last slide info to server//
var xhttp = new XMLHttpRequest();
var PACKID = window.globals.parsedParams["pack_id"];
var LASTID = window.DS.presentation.playerProps.attributes.CurrentSlideId;
var lastSlideURL = "/services_index.php?page=last_slide&pack_id=" + PACKID + "&last_slide=" + LASTID;
xhttp.open('GET', lastSlideURL, true);
xhttp.send();
}
function Jump_Slide(Target_Slide) {
// trigger slide change event //
g = DS.pubSub;
p = DS.events;
i = "_player." + Target_Slide;
g.trigger(p.request.NEXT_SLIDE, i, "_current")
}