gpt4 book ai didi

javascript - xAPI 语句中未显示动词

转载 作者:行者123 更新时间:2023-12-03 08:04:09 26 4
gpt4 key购买 nike

当我发送此示例语句时,当我查看 LRS 中的信息时,动词不会显示。 Actor 和其他信息显示正确。有人可以告诉我我可能做错了什么吗?谢谢。

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Simple Statement</title>
<script src="js/tincan.js" type="text/javascript"></script>
<script type="text/javascript">

function init()
{

var tincan = new TinCan (
{
recordStores: [
{
endpoint: "https://lrs.adlnet.gov/xapi/",
username: "xapi-tools",
password: "xapi-tools",
allowFail: false
}
]
}
);

tincan.sendStatement(
{
actor: {
mbox: "mailto:myemailaddress@example.com"
},
verb: {
id: "http://adlnet.gov/expapi/verbs/attempted"
},
target: {
id: "http://tincanapi.com/activities/sending-my-first-statement"
}
},
function (err, result) {
//Handle any errors here. This code just outputs the result to the page.
document.write("<pre>");
document.write(JSON.stringify(err, null, 4));
document.write("</pre>");
document.write("<pre>");
document.write(JSON.stringify(result, null, 4));
document.write("</pre>");
}
);
}
</script>

</head>

<body onload='init()'>

最佳答案

很可能什么也没有。您的语句可以通过提供“显示”属性并在其中包含一个或多个语言代码/值对来“改进”,以便该语句包含该对象的“人类可读”版本。我认为 TinCanJS 会为你做这个动词。

关于javascript - xAPI 语句中未显示动词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34463582/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com