从scorm 1.2连接到lms



我正试图从我的SCORM包连接到LMS,但没有连接,也无法获得任何数据。我正在使用Simplify SCORM,这是我的连接代码

window.API.LMSInitialize();
window.API.apiLogLevel = 1;
console.log('window.API ',  window.API)
console.log('window.API.cmi ', window.API.cmi)
console.log('student id ' , window.API.cmi.core.student_id);
window.API.on("LMSSetValue.cmi.core.student_id", function(CMIElement, value) {
console.log('hi ', CMIElement , ' ',value)
});
window.API.on("LMSInitialize", function() {
console.log("LMSInitialized ")
console.log('window.API.cmi ', window.API.cmi)
console.log('student id ' , window.API.LMSGetValue('student_id'));
});
Simplify Scorm不处理与LMS的通信。这就留给开发人员了。
window.API.on("LMSCommit", function() {
console.log("LMSCommit ")
// use jquery, fetchAPI or XMLHTTPRequest to communicate with LMS
});

你当然可以听一些活动。

相关内容

  • 没有找到相关文章

最新更新